Mercurial > emacs
annotate src/floatfns.c @ 1933:63ba4f555b90
* minibuf.c (Fdisplay_completion_list): Pass the proper number of
arguments to Flength.
* xmenu.c (list_of_items): Same.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Mon, 22 Feb 1993 15:09:33 +0000 |
parents | 699ae3079c09 |
children | c77607f8e32d |
rev | line source |
---|---|
102 | 1 /* Primitive operations on floating point for GNU Emacs Lisp interpreter. |
621 | 2 Copyright (C) 1988, 1992 Free Software Foundation, Inc. |
102 | 3 |
4 This file is part of GNU Emacs. | |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
621 | 8 the Free Software Foundation; either version 2, or (at your option) |
102 | 9 any later version. |
10 | |
11 GNU Emacs is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with GNU Emacs; see the file COPYING. If not, write to | |
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | |
20 | |
21 #include <signal.h> | |
22 | |
23 #include "config.h" | |
24 #include "lisp.h" | |
638 | 25 #include "syssignal.h" |
102 | 26 |
27 Lisp_Object Qarith_error; | |
28 | |
29 #ifdef LISP_FLOAT_TYPE | |
485 | 30 |
102 | 31 #include <math.h> |
485 | 32 #include <errno.h> |
33 | |
34 extern int errno; | |
35 | |
36 /* Avoid traps on VMS from sinh and cosh. | |
37 All the other functions set errno instead. */ | |
38 | |
39 #ifdef VMS | |
40 #undef cosh | |
41 #undef sinh | |
42 #define cosh(x) ((exp(x)+exp(-x))*0.5) | |
43 #define sinh(x) ((exp(x)-exp(-x))*0.5) | |
44 #endif /* VMS */ | |
45 | |
621 | 46 static SIGTYPE float_error (); |
102 | 47 |
48 /* Nonzero while executing in floating point. | |
49 This tells float_error what to do. */ | |
50 | |
51 static int in_float; | |
52 | |
53 /* If an argument is out of range for a mathematical function, | |
485 | 54 here is the actual argument value to use in the error message. */ |
102 | 55 |
56 static Lisp_Object float_error_arg; | |
57 | |
485 | 58 /* Evaluate the floating point expression D, recording NUM |
59 as the original argument for error messages. | |
60 D is normally an assignment expression. | |
1918
699ae3079c09
* floatfns.c (Flogb): Always implement this by calling Flog, even
Jim Blandy <jimb@redhat.com>
parents:
1715
diff
changeset
|
61 Handle errors which may result in signals or may set errno. |
699ae3079c09
* floatfns.c (Flogb): Always implement this by calling Flog, even
Jim Blandy <jimb@redhat.com>
parents:
1715
diff
changeset
|
62 |
699ae3079c09
* floatfns.c (Flogb): Always implement this by calling Flog, even
Jim Blandy <jimb@redhat.com>
parents:
1715
diff
changeset
|
63 Note that float_error may be declared to return void, so you can't |
699ae3079c09
* floatfns.c (Flogb): Always implement this by calling Flog, even
Jim Blandy <jimb@redhat.com>
parents:
1715
diff
changeset
|
64 just cast the zero after the colon to (SIGTYPE) to make the types |
699ae3079c09
* floatfns.c (Flogb): Always implement this by calling Flog, even
Jim Blandy <jimb@redhat.com>
parents:
1715
diff
changeset
|
65 check properly. */ |
485 | 66 |
67 #define IN_FLOAT(D, NUM) \ | |
621 | 68 (in_float = 1, errno = 0, float_error_arg = NUM, (D), \ |
1918
699ae3079c09
* floatfns.c (Flogb): Always implement this by calling Flog, even
Jim Blandy <jimb@redhat.com>
parents:
1715
diff
changeset
|
69 (errno == ERANGE || errno == EDOM ? (float_error (),0) : 0), \ |
485 | 70 in_float = 0) |
102 | 71 |
72 /* Extract a Lisp number as a `double', or signal an error. */ | |
73 | |
74 double | |
75 extract_float (num) | |
76 Lisp_Object num; | |
77 { | |
78 CHECK_NUMBER_OR_FLOAT (num, 0); | |
79 | |
80 if (XTYPE (num) == Lisp_Float) | |
81 return XFLOAT (num)->data; | |
82 return (double) XINT (num); | |
83 } | |
683
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
84 |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
85 /* Trig functions. */ |
102 | 86 |
87 DEFUN ("acos", Facos, Sacos, 1, 1, 0, | |
88 "Return the inverse cosine of ARG.") | |
89 (num) | |
90 register Lisp_Object num; | |
91 { | |
92 double d = extract_float (num); | |
93 IN_FLOAT (d = acos (d), num); | |
94 return make_float (d); | |
95 } | |
96 | |
97 DEFUN ("asin", Fasin, Sasin, 1, 1, 0, | |
98 "Return the inverse sine of ARG.") | |
99 (num) | |
100 register Lisp_Object num; | |
101 { | |
102 double d = extract_float (num); | |
103 IN_FLOAT (d = asin (d), num); | |
104 return make_float (d); | |
105 } | |
106 | |
107 DEFUN ("atan", Fatan, Satan, 1, 1, 0, | |
108 "Return the inverse tangent of ARG.") | |
109 (num) | |
110 register Lisp_Object num; | |
111 { | |
112 double d = extract_float (num); | |
113 IN_FLOAT (d = atan (d), num); | |
114 return make_float (d); | |
115 } | |
116 | |
683
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
117 DEFUN ("cos", Fcos, Scos, 1, 1, 0, |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
118 "Return the cosine of ARG.") |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
119 (num) |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
120 register Lisp_Object num; |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
121 { |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
122 double d = extract_float (num); |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
123 IN_FLOAT (d = cos (d), num); |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
124 return make_float (d); |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
125 } |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
126 |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
127 DEFUN ("sin", Fsin, Ssin, 1, 1, 0, |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
128 "Return the sine of ARG.") |
102 | 129 (num) |
130 register Lisp_Object num; | |
131 { | |
132 double d = extract_float (num); | |
683
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
133 IN_FLOAT (d = sin (d), num); |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
134 return make_float (d); |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
135 } |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
136 |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
137 DEFUN ("tan", Ftan, Stan, 1, 1, 0, |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
138 "Return the tangent of ARG.") |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
139 (num) |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
140 register Lisp_Object num; |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
141 { |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
142 double d = extract_float (num); |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
143 IN_FLOAT (d = tan (d), num); |
102 | 144 return make_float (d); |
145 } | |
146 | |
683
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
147 #if 0 /* Leave these out unless we find there's a reason for them. */ |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
148 |
102 | 149 DEFUN ("bessel-j0", Fbessel_j0, Sbessel_j0, 1, 1, 0, |
150 "Return the bessel function j0 of ARG.") | |
151 (num) | |
152 register Lisp_Object num; | |
153 { | |
154 double d = extract_float (num); | |
155 IN_FLOAT (d = j0 (d), num); | |
156 return make_float (d); | |
157 } | |
158 | |
159 DEFUN ("bessel-j1", Fbessel_j1, Sbessel_j1, 1, 1, 0, | |
160 "Return the bessel function j1 of ARG.") | |
161 (num) | |
162 register Lisp_Object num; | |
163 { | |
164 double d = extract_float (num); | |
165 IN_FLOAT (d = j1 (d), num); | |
166 return make_float (d); | |
167 } | |
168 | |
169 DEFUN ("bessel-jn", Fbessel_jn, Sbessel_jn, 2, 2, 0, | |
170 "Return the order N bessel function output jn of ARG.\n\ | |
171 The first arg (the order) is truncated to an integer.") | |
172 (num1, num2) | |
173 register Lisp_Object num1, num2; | |
174 { | |
175 int i1 = extract_float (num1); | |
176 double f2 = extract_float (num2); | |
177 | |
178 IN_FLOAT (f2 = jn (i1, f2), num1); | |
179 return make_float (f2); | |
180 } | |
181 | |
182 DEFUN ("bessel-y0", Fbessel_y0, Sbessel_y0, 1, 1, 0, | |
183 "Return the bessel function y0 of ARG.") | |
184 (num) | |
185 register Lisp_Object num; | |
186 { | |
187 double d = extract_float (num); | |
188 IN_FLOAT (d = y0 (d), num); | |
189 return make_float (d); | |
190 } | |
191 | |
192 DEFUN ("bessel-y1", Fbessel_y1, Sbessel_y1, 1, 1, 0, | |
193 "Return the bessel function y1 of ARG.") | |
194 (num) | |
195 register Lisp_Object num; | |
196 { | |
197 double d = extract_float (num); | |
198 IN_FLOAT (d = y1 (d), num); | |
199 return make_float (d); | |
200 } | |
201 | |
202 DEFUN ("bessel-yn", Fbessel_yn, Sbessel_yn, 2, 2, 0, | |
203 "Return the order N bessel function output yn of ARG.\n\ | |
204 The first arg (the order) is truncated to an integer.") | |
205 (num1, num2) | |
206 register Lisp_Object num1, num2; | |
207 { | |
208 int i1 = extract_float (num1); | |
209 double f2 = extract_float (num2); | |
210 | |
211 IN_FLOAT (f2 = yn (i1, f2), num1); | |
212 return make_float (f2); | |
213 } | |
683
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
214 |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
215 #endif |
102 | 216 |
683
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
217 #if 0 /* Leave these out unless we see they are worth having. */ |
102 | 218 |
219 DEFUN ("erf", Ferf, Serf, 1, 1, 0, | |
220 "Return the mathematical error function of ARG.") | |
221 (num) | |
222 register Lisp_Object num; | |
223 { | |
224 double d = extract_float (num); | |
225 IN_FLOAT (d = erf (d), num); | |
226 return make_float (d); | |
227 } | |
228 | |
229 DEFUN ("erfc", Ferfc, Serfc, 1, 1, 0, | |
230 "Return the complementary error function of ARG.") | |
231 (num) | |
232 register Lisp_Object num; | |
233 { | |
234 double d = extract_float (num); | |
235 IN_FLOAT (d = erfc (d), num); | |
236 return make_float (d); | |
237 } | |
238 | |
683
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
239 DEFUN ("log-gamma", Flog_gamma, Slog_gamma, 1, 1, 0, |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
240 "Return the log gamma of ARG.") |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
241 (num) |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
242 register Lisp_Object num; |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
243 { |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
244 double d = extract_float (num); |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
245 IN_FLOAT (d = lgamma (d), num); |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
246 return make_float (d); |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
247 } |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
248 |
694 | 249 DEFUN ("cbrt", Fcbrt, Scbrt, 1, 1, 0, |
683
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
250 "Return the cube root of ARG.") |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
251 (num) |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
252 register Lisp_Object num; |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
253 { |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
254 double d = extract_float (num); |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
255 IN_FLOAT (d = cbrt (d), num); |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
256 return make_float (d); |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
257 } |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
258 |
694 | 259 #endif |
260 | |
102 | 261 DEFUN ("exp", Fexp, Sexp, 1, 1, 0, |
262 "Return the exponential base e of ARG.") | |
263 (num) | |
264 register Lisp_Object num; | |
265 { | |
266 double d = extract_float (num); | |
267 IN_FLOAT (d = exp (d), num); | |
268 return make_float (d); | |
269 } | |
270 | |
271 DEFUN ("expt", Fexpt, Sexpt, 2, 2, 0, | |
683
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
272 "Return the exponential X ** Y.") |
102 | 273 (num1, num2) |
274 register Lisp_Object num1, num2; | |
275 { | |
276 double f1, f2; | |
277 | |
278 CHECK_NUMBER_OR_FLOAT (num1, 0); | |
279 CHECK_NUMBER_OR_FLOAT (num2, 0); | |
280 if ((XTYPE (num1) == Lisp_Int) && /* common lisp spec */ | |
281 (XTYPE (num2) == Lisp_Int)) /* don't promote, if both are ints */ | |
282 { /* this can be improved by pre-calculating */ | |
283 int acc, x, y; /* some binary powers of x then acumulating */ | |
284 /* these, therby saving some time. -wsr */ | |
285 x = XINT (num1); | |
286 y = XINT (num2); | |
287 acc = 1; | |
288 | |
289 if (y < 0) | |
290 { | |
291 for (; y < 0; y++) | |
292 acc /= x; | |
293 } | |
294 else | |
295 { | |
296 for (; y > 0; y--) | |
297 acc *= x; | |
298 } | |
1512
bef6b6903528
* floatfns.c (Flog): Don't forget to declare the BASE argument a
Jim Blandy <jimb@redhat.com>
parents:
1005
diff
changeset
|
299 XFASTINT (x) = acc; |
bef6b6903528
* floatfns.c (Flog): Don't forget to declare the BASE argument a
Jim Blandy <jimb@redhat.com>
parents:
1005
diff
changeset
|
300 return x; |
102 | 301 } |
302 f1 = (XTYPE (num1) == Lisp_Float) ? XFLOAT (num1)->data : XINT (num1); | |
303 f2 = (XTYPE (num2) == Lisp_Float) ? XFLOAT (num2)->data : XINT (num2); | |
304 IN_FLOAT (f1 = pow (f1, f2), num1); | |
305 return make_float (f1); | |
306 } | |
683
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
307 |
1005
70ed307d9047
* floatfns.c (Fexpm1, Flog1p): Function removed; it's not widely
Jim Blandy <jimb@redhat.com>
parents:
694
diff
changeset
|
308 DEFUN ("log", Flog, Slog, 1, 2, 0, |
1715
cd23f7ef1bd0
* floatfns.c (Flog): Fix unescaped newline in string.
Jim Blandy <jimb@redhat.com>
parents:
1512
diff
changeset
|
309 "Return the natural logarithm of NUM.\n\ |
1005
70ed307d9047
* floatfns.c (Fexpm1, Flog1p): Function removed; it's not widely
Jim Blandy <jimb@redhat.com>
parents:
694
diff
changeset
|
310 If second optional argument BASE is given, return log NUM using that base.") |
70ed307d9047
* floatfns.c (Fexpm1, Flog1p): Function removed; it's not widely
Jim Blandy <jimb@redhat.com>
parents:
694
diff
changeset
|
311 (num, base) |
1512
bef6b6903528
* floatfns.c (Flog): Don't forget to declare the BASE argument a
Jim Blandy <jimb@redhat.com>
parents:
1005
diff
changeset
|
312 register Lisp_Object num, base; |
683
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
313 { |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
314 double d = extract_float (num); |
1005
70ed307d9047
* floatfns.c (Fexpm1, Flog1p): Function removed; it's not widely
Jim Blandy <jimb@redhat.com>
parents:
694
diff
changeset
|
315 |
70ed307d9047
* floatfns.c (Fexpm1, Flog1p): Function removed; it's not widely
Jim Blandy <jimb@redhat.com>
parents:
694
diff
changeset
|
316 if (NILP (base)) |
70ed307d9047
* floatfns.c (Fexpm1, Flog1p): Function removed; it's not widely
Jim Blandy <jimb@redhat.com>
parents:
694
diff
changeset
|
317 IN_FLOAT (d = log (d), num); |
70ed307d9047
* floatfns.c (Fexpm1, Flog1p): Function removed; it's not widely
Jim Blandy <jimb@redhat.com>
parents:
694
diff
changeset
|
318 else |
70ed307d9047
* floatfns.c (Fexpm1, Flog1p): Function removed; it's not widely
Jim Blandy <jimb@redhat.com>
parents:
694
diff
changeset
|
319 { |
70ed307d9047
* floatfns.c (Fexpm1, Flog1p): Function removed; it's not widely
Jim Blandy <jimb@redhat.com>
parents:
694
diff
changeset
|
320 double b = extract_float (base); |
70ed307d9047
* floatfns.c (Fexpm1, Flog1p): Function removed; it's not widely
Jim Blandy <jimb@redhat.com>
parents:
694
diff
changeset
|
321 |
70ed307d9047
* floatfns.c (Fexpm1, Flog1p): Function removed; it's not widely
Jim Blandy <jimb@redhat.com>
parents:
694
diff
changeset
|
322 IN_FLOAT (d = log (num) / log (b), num); |
70ed307d9047
* floatfns.c (Fexpm1, Flog1p): Function removed; it's not widely
Jim Blandy <jimb@redhat.com>
parents:
694
diff
changeset
|
323 } |
683
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
324 return make_float (d); |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
325 } |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
326 |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
327 DEFUN ("log10", Flog10, Slog10, 1, 1, 0, |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
328 "Return the logarithm base 10 of ARG.") |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
329 (num) |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
330 register Lisp_Object num; |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
331 { |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
332 double d = extract_float (num); |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
333 IN_FLOAT (d = log10 (d), num); |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
334 return make_float (d); |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
335 } |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
336 |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
337 DEFUN ("sqrt", Fsqrt, Ssqrt, 1, 1, 0, |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
338 "Return the square root of ARG.") |
102 | 339 (num) |
340 register Lisp_Object num; | |
341 { | |
342 double d = extract_float (num); | |
683
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
343 IN_FLOAT (d = sqrt (d), num); |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
344 return make_float (d); |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
345 } |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
346 |
694 | 347 #if 0 /* Not clearly worth adding. */ |
683
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
348 |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
349 DEFUN ("acosh", Facosh, Sacosh, 1, 1, 0, |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
350 "Return the inverse hyperbolic cosine of ARG.") |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
351 (num) |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
352 register Lisp_Object num; |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
353 { |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
354 double d = extract_float (num); |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
355 IN_FLOAT (d = acosh (d), num); |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
356 return make_float (d); |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
357 } |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
358 |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
359 DEFUN ("asinh", Fasinh, Sasinh, 1, 1, 0, |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
360 "Return the inverse hyperbolic sine of ARG.") |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
361 (num) |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
362 register Lisp_Object num; |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
363 { |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
364 double d = extract_float (num); |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
365 IN_FLOAT (d = asinh (d), num); |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
366 return make_float (d); |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
367 } |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
368 |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
369 DEFUN ("atanh", Fatanh, Satanh, 1, 1, 0, |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
370 "Return the inverse hyperbolic tangent of ARG.") |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
371 (num) |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
372 register Lisp_Object num; |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
373 { |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
374 double d = extract_float (num); |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
375 IN_FLOAT (d = atanh (d), num); |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
376 return make_float (d); |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
377 } |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
378 |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
379 DEFUN ("cosh", Fcosh, Scosh, 1, 1, 0, |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
380 "Return the hyperbolic cosine of ARG.") |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
381 (num) |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
382 register Lisp_Object num; |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
383 { |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
384 double d = extract_float (num); |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
385 IN_FLOAT (d = cosh (d), num); |
102 | 386 return make_float (d); |
387 } | |
388 | |
389 DEFUN ("sinh", Fsinh, Ssinh, 1, 1, 0, | |
390 "Return the hyperbolic sine of ARG.") | |
391 (num) | |
392 register Lisp_Object num; | |
393 { | |
394 double d = extract_float (num); | |
395 IN_FLOAT (d = sinh (d), num); | |
396 return make_float (d); | |
397 } | |
398 | |
399 DEFUN ("tanh", Ftanh, Stanh, 1, 1, 0, | |
400 "Return the hyperbolic tangent of ARG.") | |
401 (num) | |
402 register Lisp_Object num; | |
403 { | |
404 double d = extract_float (num); | |
405 IN_FLOAT (d = tanh (d), num); | |
406 return make_float (d); | |
407 } | |
683
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
408 #endif |
102 | 409 |
410 DEFUN ("abs", Fabs, Sabs, 1, 1, 0, | |
411 "Return the absolute value of ARG.") | |
412 (num) | |
413 register Lisp_Object num; | |
414 { | |
415 CHECK_NUMBER_OR_FLOAT (num, 0); | |
416 | |
417 if (XTYPE (num) == Lisp_Float) | |
418 IN_FLOAT (num = make_float (fabs (XFLOAT (num)->data)), num); | |
419 else if (XINT (num) < 0) | |
420 XSETINT (num, - XFASTINT (num)); | |
421 | |
422 return num; | |
423 } | |
424 | |
425 DEFUN ("float", Ffloat, Sfloat, 1, 1, 0, | |
426 "Return the floating point number equal to ARG.") | |
427 (num) | |
428 register Lisp_Object num; | |
429 { | |
430 CHECK_NUMBER_OR_FLOAT (num, 0); | |
431 | |
432 if (XTYPE (num) == Lisp_Int) | |
433 return make_float ((double) XINT (num)); | |
434 else /* give 'em the same float back */ | |
435 return num; | |
436 } | |
437 | |
438 DEFUN ("logb", Flogb, Slogb, 1, 1, 0, | |
439 "Returns the integer that is the base 2 log of ARG.\n\ | |
440 This is the same as the exponent of a float.") | |
441 (num) | |
442 Lisp_Object num; | |
443 { | |
1918
699ae3079c09
* floatfns.c (Flogb): Always implement this by calling Flog, even
Jim Blandy <jimb@redhat.com>
parents:
1715
diff
changeset
|
444 /* System V apparently doesn't have a `logb' function. It might be |
699ae3079c09
* floatfns.c (Flogb): Always implement this by calling Flog, even
Jim Blandy <jimb@redhat.com>
parents:
1715
diff
changeset
|
445 better to use it on systems that have it, but Ultrix (at least) |
699ae3079c09
* floatfns.c (Flogb): Always implement this by calling Flog, even
Jim Blandy <jimb@redhat.com>
parents:
1715
diff
changeset
|
446 doesn't declare it properly in <math.h>; does anyone really care? */ |
1005
70ed307d9047
* floatfns.c (Fexpm1, Flog1p): Function removed; it's not widely
Jim Blandy <jimb@redhat.com>
parents:
694
diff
changeset
|
447 return Flog (num, make_number (2)); |
102 | 448 } |
449 | |
450 /* the rounding functions */ | |
451 | |
452 DEFUN ("ceiling", Fceiling, Sceiling, 1, 1, 0, | |
453 "Return the smallest integer no less than ARG. (Round toward +inf.)") | |
454 (num) | |
455 register Lisp_Object num; | |
456 { | |
457 CHECK_NUMBER_OR_FLOAT (num, 0); | |
458 | |
459 if (XTYPE (num) == Lisp_Float) | |
460 IN_FLOAT (XSET (num, Lisp_Int, ceil (XFLOAT (num)->data)), num); | |
461 | |
462 return num; | |
463 } | |
464 | |
465 DEFUN ("floor", Ffloor, Sfloor, 1, 1, 0, | |
466 "Return the largest integer no greater than ARG. (Round towards -inf.)") | |
467 (num) | |
468 register Lisp_Object num; | |
469 { | |
470 CHECK_NUMBER_OR_FLOAT (num, 0); | |
471 | |
472 if (XTYPE (num) == Lisp_Float) | |
473 IN_FLOAT (XSET (num, Lisp_Int, floor (XFLOAT (num)->data)), num); | |
474 | |
475 return num; | |
476 } | |
477 | |
478 DEFUN ("round", Fround, Sround, 1, 1, 0, | |
479 "Return the nearest integer to ARG.") | |
480 (num) | |
481 register Lisp_Object num; | |
482 { | |
483 CHECK_NUMBER_OR_FLOAT (num, 0); | |
484 | |
485 if (XTYPE (num) == Lisp_Float) | |
1005
70ed307d9047
* floatfns.c (Fexpm1, Flog1p): Function removed; it's not widely
Jim Blandy <jimb@redhat.com>
parents:
694
diff
changeset
|
486 { |
70ed307d9047
* floatfns.c (Fexpm1, Flog1p): Function removed; it's not widely
Jim Blandy <jimb@redhat.com>
parents:
694
diff
changeset
|
487 /* Screw the prevailing rounding mode. */ |
70ed307d9047
* floatfns.c (Fexpm1, Flog1p): Function removed; it's not widely
Jim Blandy <jimb@redhat.com>
parents:
694
diff
changeset
|
488 IN_FLOAT (XSET (num, Lisp_Int, floor (XFLOAT (num)->data + 0.5)), num); |
1918
699ae3079c09
* floatfns.c (Flogb): Always implement this by calling Flog, even
Jim Blandy <jimb@redhat.com>
parents:
1715
diff
changeset
|
489 |
699ae3079c09
* floatfns.c (Flogb): Always implement this by calling Flog, even
Jim Blandy <jimb@redhat.com>
parents:
1715
diff
changeset
|
490 /* It used to be that on non-USG systems we'd use the `rint' |
699ae3079c09
* floatfns.c (Flogb): Always implement this by calling Flog, even
Jim Blandy <jimb@redhat.com>
parents:
1715
diff
changeset
|
491 function. But that seems not to be declared properly in |
699ae3079c09
* floatfns.c (Flogb): Always implement this by calling Flog, even
Jim Blandy <jimb@redhat.com>
parents:
1715
diff
changeset
|
492 <math.h> on Ultrix, I don't want to declare it myself because |
699ae3079c09
* floatfns.c (Flogb): Always implement this by calling Flog, even
Jim Blandy <jimb@redhat.com>
parents:
1715
diff
changeset
|
493 that might conflict with <math.h> on other systems, and I |
699ae3079c09
* floatfns.c (Flogb): Always implement this by calling Flog, even
Jim Blandy <jimb@redhat.com>
parents:
1715
diff
changeset
|
494 don't see what's wrong with the code above anyway. */ |
1005
70ed307d9047
* floatfns.c (Fexpm1, Flog1p): Function removed; it's not widely
Jim Blandy <jimb@redhat.com>
parents:
694
diff
changeset
|
495 } |
102 | 496 |
497 return num; | |
498 } | |
499 | |
500 DEFUN ("truncate", Ftruncate, Struncate, 1, 1, 0, | |
501 "Truncate a floating point number to an int.\n\ | |
502 Rounds the value toward zero.") | |
503 (num) | |
504 register Lisp_Object num; | |
505 { | |
506 CHECK_NUMBER_OR_FLOAT (num, 0); | |
507 | |
508 if (XTYPE (num) == Lisp_Float) | |
509 XSET (num, Lisp_Int, (int) XFLOAT (num)->data); | |
510 | |
511 return num; | |
512 } | |
513 | |
621 | 514 static SIGTYPE |
102 | 515 float_error (signo) |
516 int signo; | |
517 { | |
518 if (! in_float) | |
519 fatal_error_signal (signo); | |
520 | |
485 | 521 #ifdef BSD |
102 | 522 #ifdef BSD4_1 |
523 sigrelse (SIGILL); | |
524 #else /* not BSD4_1 */ | |
638 | 525 sigsetmask (SIGEMPTYMASK); |
102 | 526 #endif /* not BSD4_1 */ |
485 | 527 #else |
528 /* Must reestablish handler each time it is called. */ | |
529 signal (SIGILL, float_error); | |
530 #endif /* BSD */ | |
102 | 531 |
532 in_float = 0; | |
533 | |
534 Fsignal (Qarith_error, Fcons (float_error_arg, Qnil)); | |
535 } | |
536 | |
537 init_floatfns () | |
538 { | |
539 signal (SIGILL, float_error); | |
540 in_float = 0; | |
541 } | |
542 | |
543 syms_of_floatfns () | |
544 { | |
545 defsubr (&Sacos); | |
683
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
546 defsubr (&Sasin); |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
547 defsubr (&Satan); |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
548 defsubr (&Scos); |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
549 defsubr (&Ssin); |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
550 defsubr (&Stan); |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
551 #if 0 |
102 | 552 defsubr (&Sacosh); |
553 defsubr (&Sasinh); | |
554 defsubr (&Satanh); | |
683
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
555 defsubr (&Scosh); |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
556 defsubr (&Ssinh); |
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
557 defsubr (&Stanh); |
102 | 558 defsubr (&Sbessel_y0); |
559 defsubr (&Sbessel_y1); | |
560 defsubr (&Sbessel_yn); | |
561 defsubr (&Sbessel_j0); | |
562 defsubr (&Sbessel_j1); | |
563 defsubr (&Sbessel_jn); | |
564 defsubr (&Serf); | |
565 defsubr (&Serfc); | |
683
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
566 defsubr (&Slog_gamma); |
694 | 567 defsubr (&Scbrt); |
683
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
568 #endif |
102 | 569 defsubr (&Sexp); |
683
7f4d77d29804
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
638
diff
changeset
|
570 defsubr (&Sexpt); |
102 | 571 defsubr (&Slog); |
572 defsubr (&Slog10); | |
573 defsubr (&Ssqrt); | |
574 | |
575 defsubr (&Sabs); | |
576 defsubr (&Sfloat); | |
577 defsubr (&Slogb); | |
578 defsubr (&Sceiling); | |
579 defsubr (&Sfloor); | |
580 defsubr (&Sround); | |
581 defsubr (&Struncate); | |
582 } | |
583 | |
584 #else /* not LISP_FLOAT_TYPE */ | |
585 | |
586 init_floatfns () | |
587 {} | |
588 | |
589 syms_of_floatfns () | |
590 {} | |
591 | |
592 #endif /* not LISP_FLOAT_TYPE */ |