Mercurial > emacs
annotate lisp/calc/calc-bin.el @ 62435:d58591f0719f
*** empty log message ***
author | Lute Kamstra <lute@gnu.org> |
---|---|
date | Tue, 17 May 2005 15:21:56 +0000 |
parents | 729b3756f347 |
children | 1db49616ce05 08185296b491 |
rev | line source |
---|---|
41271
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41042
diff
changeset
|
1 ;;; calc-bin.el --- binary functions for Calc |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41042
diff
changeset
|
2 |
62033
729b3756f347
(calc-word-size): Replace string-to-int by string-to-number.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58648
diff
changeset
|
3 ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2005 Free Software Foundation, Inc. |
41271
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41042
diff
changeset
|
4 |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41042
diff
changeset
|
5 ;; Author: David Gillespie <daveg@synaptics.com> |
58553
1c7dfa5d5967
(math-format-radix-float): Make pos a local variable.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
6 ;; Maintainer: Jay Belanger <belanger@truman.edu> |
40785 | 7 |
8 ;; This file is part of GNU Emacs. | |
9 | |
10 ;; GNU Emacs is distributed in the hope that it will be useful, | |
11 ;; but WITHOUT ANY WARRANTY. No author or distributor | |
12 ;; accepts responsibility to anyone for the consequences of using it | |
13 ;; or for whether it serves any particular purpose or works at all, | |
14 ;; unless he says so in writing. Refer to the GNU Emacs General Public | |
15 ;; License for full details. | |
16 | |
17 ;; Everyone is granted permission to copy, modify and redistribute | |
18 ;; GNU Emacs, but only under the conditions described in the | |
19 ;; GNU Emacs General Public License. A copy of this license is | |
20 ;; supposed to have been given to you along with GNU Emacs so you | |
21 ;; can know your rights and responsibilities. It should be in a | |
22 ;; file named COPYING. Among other things, the copyright notice | |
23 ;; and this notice must be preserved on all copies. | |
24 | |
41271
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41042
diff
changeset
|
25 ;;; Commentary: |
40785 | 26 |
41271
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41042
diff
changeset
|
27 ;;; Code: |
40785 | 28 |
29 ;; This file is autoloaded from calc-ext.el. | |
58648
617cbf064b4b
Add a provide statement.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58553
diff
changeset
|
30 |
40785 | 31 (require 'calc-ext) |
32 (require 'calc-macs) | |
33 | |
34 ;;; b-prefix binary commands. | |
35 | |
36 (defun calc-and (n) | |
37 (interactive "P") | |
38 (calc-slow-wrapper | |
39 (calc-enter-result 2 "and" | |
40 (append '(calcFunc-and) | |
41 (calc-top-list-n 2) | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
42 (and n (list (prefix-numeric-value n))))))) |
40785 | 43 |
44 (defun calc-or (n) | |
45 (interactive "P") | |
46 (calc-slow-wrapper | |
47 (calc-enter-result 2 "or" | |
48 (append '(calcFunc-or) | |
49 (calc-top-list-n 2) | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
50 (and n (list (prefix-numeric-value n))))))) |
40785 | 51 |
52 (defun calc-xor (n) | |
53 (interactive "P") | |
54 (calc-slow-wrapper | |
55 (calc-enter-result 2 "xor" | |
56 (append '(calcFunc-xor) | |
57 (calc-top-list-n 2) | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
58 (and n (list (prefix-numeric-value n))))))) |
40785 | 59 |
60 (defun calc-diff (n) | |
61 (interactive "P") | |
62 (calc-slow-wrapper | |
63 (calc-enter-result 2 "diff" | |
64 (append '(calcFunc-diff) | |
65 (calc-top-list-n 2) | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
66 (and n (list (prefix-numeric-value n))))))) |
40785 | 67 |
68 (defun calc-not (n) | |
69 (interactive "P") | |
70 (calc-slow-wrapper | |
71 (calc-enter-result 1 "not" | |
72 (append '(calcFunc-not) | |
73 (calc-top-list-n 1) | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
74 (and n (list (prefix-numeric-value n))))))) |
40785 | 75 |
76 (defun calc-lshift-binary (n) | |
77 (interactive "P") | |
78 (calc-slow-wrapper | |
79 (let ((hyp (if (calc-is-hyperbolic) 2 1))) | |
80 (calc-enter-result hyp "lsh" | |
81 (append '(calcFunc-lsh) | |
82 (calc-top-list-n hyp) | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
83 (and n (list (prefix-numeric-value n)))))))) |
40785 | 84 |
85 (defun calc-rshift-binary (n) | |
86 (interactive "P") | |
87 (calc-slow-wrapper | |
88 (let ((hyp (if (calc-is-hyperbolic) 2 1))) | |
89 (calc-enter-result hyp "rsh" | |
90 (append '(calcFunc-rsh) | |
91 (calc-top-list-n hyp) | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
92 (and n (list (prefix-numeric-value n)))))))) |
40785 | 93 |
94 (defun calc-lshift-arith (n) | |
95 (interactive "P") | |
96 (calc-slow-wrapper | |
97 (let ((hyp (if (calc-is-hyperbolic) 2 1))) | |
98 (calc-enter-result hyp "ash" | |
99 (append '(calcFunc-ash) | |
100 (calc-top-list-n hyp) | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
101 (and n (list (prefix-numeric-value n)))))))) |
40785 | 102 |
103 (defun calc-rshift-arith (n) | |
104 (interactive "P") | |
105 (calc-slow-wrapper | |
106 (let ((hyp (if (calc-is-hyperbolic) 2 1))) | |
107 (calc-enter-result hyp "rash" | |
108 (append '(calcFunc-rash) | |
109 (calc-top-list-n hyp) | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
110 (and n (list (prefix-numeric-value n)))))))) |
40785 | 111 |
112 (defun calc-rotate-binary (n) | |
113 (interactive "P") | |
114 (calc-slow-wrapper | |
115 (let ((hyp (if (calc-is-hyperbolic) 2 1))) | |
116 (calc-enter-result hyp "rot" | |
117 (append '(calcFunc-rot) | |
118 (calc-top-list-n hyp) | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
119 (and n (list (prefix-numeric-value n)))))))) |
40785 | 120 |
121 (defun calc-clip (n) | |
122 (interactive "P") | |
123 (calc-slow-wrapper | |
124 (calc-enter-result 1 "clip" | |
125 (append '(calcFunc-clip) | |
126 (calc-top-list-n 1) | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
127 (and n (list (prefix-numeric-value n))))))) |
40785 | 128 |
129 (defun calc-word-size (n) | |
130 (interactive "P") | |
131 (calc-wrapper | |
132 (or n (setq n (read-string (format "Binary word size: (default %d) " | |
133 calc-word-size)))) | |
134 (setq n (if (stringp n) | |
135 (if (equal n "") | |
136 calc-word-size | |
137 (if (string-match "\\`[-+]?[0-9]+\\'" n) | |
62033
729b3756f347
(calc-word-size): Replace string-to-int by string-to-number.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58648
diff
changeset
|
138 (string-to-number n) |
40785 | 139 (error "Expected an integer"))) |
140 (prefix-numeric-value n))) | |
141 (or (= n calc-word-size) | |
142 (if (> (math-abs n) 100) | |
143 (calc-change-mode 'calc-word-size n calc-leading-zeros) | |
144 (calc-change-mode '(calc-word-size calc-previous-modulo) | |
145 (list n (math-power-of-2 (math-abs n))) | |
146 calc-leading-zeros))) | |
147 (if (< n 0) | |
41271
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41042
diff
changeset
|
148 (message "Binary word size is %d bits (2's complement)" (- n)) |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41042
diff
changeset
|
149 (message "Binary word size is %d bits" n)))) |
40785 | 150 |
151 | |
152 | |
153 | |
154 | |
155 ;;; d-prefix mode commands. | |
156 | |
157 (defun calc-radix (n) | |
158 (interactive "NDisplay radix (2-36): ") | |
159 (calc-wrapper | |
160 (if (and (>= n 2) (<= n 36)) | |
161 (progn | |
162 (calc-change-mode 'calc-number-radix n t) | |
163 ;; also change global value so minibuffer sees it | |
164 (setq-default calc-number-radix calc-number-radix)) | |
165 (setq n calc-number-radix)) | |
41271
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41042
diff
changeset
|
166 (message "Number radix is %d" n))) |
40785 | 167 |
168 (defun calc-decimal-radix () | |
169 (interactive) | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
170 (calc-radix 10)) |
40785 | 171 |
172 (defun calc-binary-radix () | |
173 (interactive) | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
174 (calc-radix 2)) |
40785 | 175 |
176 (defun calc-octal-radix () | |
177 (interactive) | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
178 (calc-radix 8)) |
40785 | 179 |
180 (defun calc-hex-radix () | |
181 (interactive) | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
182 (calc-radix 16)) |
40785 | 183 |
184 (defun calc-leading-zeros (n) | |
185 (interactive "P") | |
186 (calc-wrapper | |
187 (if (calc-change-mode 'calc-leading-zeros n t t) | |
41271
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41042
diff
changeset
|
188 (message "Zero-padding integers to %d digits (assuming radix %d)" |
40785 | 189 (let* ((calc-internal-prec 6)) |
190 (math-compute-max-digits (math-abs calc-word-size) | |
191 calc-number-radix)) | |
192 calc-number-radix) | |
41271
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41042
diff
changeset
|
193 (message "Omitting leading zeros on integers")))) |
40785 | 194 |
195 | |
196 (defvar math-power-of-2-cache (list 1 2 4 8 16 32 64 128 256 512 1024)) | |
197 (defvar math-big-power-of-2-cache nil) | |
198 (defun math-power-of-2 (n) ; [I I] [Public] | |
199 (if (and (natnump n) (<= n 100)) | |
200 (or (nth n math-power-of-2-cache) | |
201 (let* ((i (length math-power-of-2-cache)) | |
202 (val (nth (1- i) math-power-of-2-cache))) | |
203 (while (<= i n) | |
204 (setq val (math-mul val 2) | |
205 math-power-of-2-cache (nconc math-power-of-2-cache | |
206 (list val)) | |
207 i (1+ i))) | |
208 val)) | |
209 (let ((found (assq n math-big-power-of-2-cache))) | |
210 (if found | |
211 (cdr found) | |
212 (let ((po2 (math-ipow 2 n))) | |
213 (setq math-big-power-of-2-cache | |
214 (cons (cons n po2) math-big-power-of-2-cache)) | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
215 po2))))) |
40785 | 216 |
217 (defun math-integer-log2 (n) ; [I I] [Public] | |
218 (let ((i 0) | |
219 (p math-power-of-2-cache) | |
220 val) | |
221 (while (and p (Math-natnum-lessp (setq val (car p)) n)) | |
222 (setq p (cdr p) | |
223 i (1+ i))) | |
224 (if p | |
225 (and (equal val n) | |
226 i) | |
227 (while (Math-natnum-lessp | |
228 (prog1 | |
229 (setq val (math-mul val 2)) | |
230 (setq math-power-of-2-cache (nconc math-power-of-2-cache | |
231 (list val)))) | |
232 n) | |
233 (setq i (1+ i))) | |
234 (and (equal val n) | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
235 i)))) |
40785 | 236 |
237 | |
238 | |
239 | |
240 ;;; Bitwise operations. | |
241 | |
242 (defun calcFunc-and (a b &optional w) ; [I I I] [Public] | |
243 (cond ((Math-messy-integerp w) | |
244 (calcFunc-and a b (math-trunc w))) | |
245 ((and w (not (integerp w))) | |
246 (math-reject-arg w 'fixnump)) | |
247 ((and (integerp a) (integerp b)) | |
248 (math-clip (logand a b) w)) | |
249 ((or (eq (car-safe a) 'mod) (eq (car-safe b) 'mod)) | |
250 (math-binary-modulo-args 'calcFunc-and a b w)) | |
251 ((not (Math-num-integerp a)) | |
252 (math-reject-arg a 'integerp)) | |
253 ((not (Math-num-integerp b)) | |
254 (math-reject-arg b 'integerp)) | |
255 (t (math-clip (cons 'bigpos | |
256 (math-and-bignum (math-binary-arg a w) | |
257 (math-binary-arg b w))) | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
258 w)))) |
40785 | 259 |
260 (defun math-binary-arg (a w) | |
261 (if (not (Math-integerp a)) | |
262 (setq a (math-trunc a))) | |
263 (if (Math-integer-negp a) | |
264 (math-not-bignum (cdr (math-bignum-test (math-sub -1 a))) | |
265 (math-abs (if w (math-trunc w) calc-word-size))) | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
266 (cdr (Math-bignum-test a)))) |
40785 | 267 |
268 (defun math-binary-modulo-args (f a b w) | |
269 (let (mod) | |
270 (if (eq (car-safe a) 'mod) | |
271 (progn | |
272 (setq mod (nth 2 a) | |
273 a (nth 1 a)) | |
274 (if (eq (car-safe b) 'mod) | |
275 (if (equal mod (nth 2 b)) | |
276 (setq b (nth 1 b)) | |
277 (math-reject-arg b "*Inconsistent modulos")))) | |
278 (setq mod (nth 2 b) | |
279 b (nth 1 b))) | |
280 (if (Math-messy-integerp mod) | |
281 (setq mod (math-trunc mod)) | |
282 (or (Math-integerp mod) | |
283 (math-reject-arg mod 'integerp))) | |
284 (let ((bits (math-integer-log2 mod))) | |
285 (if bits | |
286 (if w | |
287 (if (/= w bits) | |
288 (calc-record-why | |
289 "*Warning: Modulo inconsistent with word size")) | |
290 (setq w bits)) | |
291 (calc-record-why "*Warning: Modulo is not a power of 2")) | |
292 (math-make-mod (if b | |
293 (funcall f a b w) | |
294 (funcall f a w)) | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
295 mod)))) |
40785 | 296 |
297 (defun math-and-bignum (a b) ; [l l l] | |
298 (and a b | |
299 (let ((qa (math-div-bignum-digit a 512)) | |
300 (qb (math-div-bignum-digit b 512))) | |
301 (math-mul-bignum-digit (math-and-bignum (math-norm-bignum (car qa)) | |
302 (math-norm-bignum (car qb))) | |
303 512 | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
304 (logand (cdr qa) (cdr qb)))))) |
40785 | 305 |
306 (defun calcFunc-or (a b &optional w) ; [I I I] [Public] | |
307 (cond ((Math-messy-integerp w) | |
308 (calcFunc-or a b (math-trunc w))) | |
309 ((and w (not (integerp w))) | |
310 (math-reject-arg w 'fixnump)) | |
311 ((and (integerp a) (integerp b)) | |
312 (math-clip (logior a b) w)) | |
313 ((or (eq (car-safe a) 'mod) (eq (car-safe b) 'mod)) | |
314 (math-binary-modulo-args 'calcFunc-or a b w)) | |
315 ((not (Math-num-integerp a)) | |
316 (math-reject-arg a 'integerp)) | |
317 ((not (Math-num-integerp b)) | |
318 (math-reject-arg b 'integerp)) | |
319 (t (math-clip (cons 'bigpos | |
320 (math-or-bignum (math-binary-arg a w) | |
321 (math-binary-arg b w))) | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
322 w)))) |
40785 | 323 |
324 (defun math-or-bignum (a b) ; [l l l] | |
325 (and (or a b) | |
326 (let ((qa (math-div-bignum-digit a 512)) | |
327 (qb (math-div-bignum-digit b 512))) | |
328 (math-mul-bignum-digit (math-or-bignum (math-norm-bignum (car qa)) | |
329 (math-norm-bignum (car qb))) | |
330 512 | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
331 (logior (cdr qa) (cdr qb)))))) |
40785 | 332 |
333 (defun calcFunc-xor (a b &optional w) ; [I I I] [Public] | |
334 (cond ((Math-messy-integerp w) | |
335 (calcFunc-xor a b (math-trunc w))) | |
336 ((and w (not (integerp w))) | |
337 (math-reject-arg w 'fixnump)) | |
338 ((and (integerp a) (integerp b)) | |
339 (math-clip (logxor a b) w)) | |
340 ((or (eq (car-safe a) 'mod) (eq (car-safe b) 'mod)) | |
341 (math-binary-modulo-args 'calcFunc-xor a b w)) | |
342 ((not (Math-num-integerp a)) | |
343 (math-reject-arg a 'integerp)) | |
344 ((not (Math-num-integerp b)) | |
345 (math-reject-arg b 'integerp)) | |
346 (t (math-clip (cons 'bigpos | |
347 (math-xor-bignum (math-binary-arg a w) | |
348 (math-binary-arg b w))) | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
349 w)))) |
40785 | 350 |
351 (defun math-xor-bignum (a b) ; [l l l] | |
352 (and (or a b) | |
353 (let ((qa (math-div-bignum-digit a 512)) | |
354 (qb (math-div-bignum-digit b 512))) | |
355 (math-mul-bignum-digit (math-xor-bignum (math-norm-bignum (car qa)) | |
356 (math-norm-bignum (car qb))) | |
357 512 | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
358 (logxor (cdr qa) (cdr qb)))))) |
40785 | 359 |
360 (defun calcFunc-diff (a b &optional w) ; [I I I] [Public] | |
361 (cond ((Math-messy-integerp w) | |
362 (calcFunc-diff a b (math-trunc w))) | |
363 ((and w (not (integerp w))) | |
364 (math-reject-arg w 'fixnump)) | |
365 ((and (integerp a) (integerp b)) | |
366 (math-clip (logand a (lognot b)) w)) | |
367 ((or (eq (car-safe a) 'mod) (eq (car-safe b) 'mod)) | |
368 (math-binary-modulo-args 'calcFunc-diff a b w)) | |
369 ((not (Math-num-integerp a)) | |
370 (math-reject-arg a 'integerp)) | |
371 ((not (Math-num-integerp b)) | |
372 (math-reject-arg b 'integerp)) | |
373 (t (math-clip (cons 'bigpos | |
374 (math-diff-bignum (math-binary-arg a w) | |
375 (math-binary-arg b w))) | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
376 w)))) |
40785 | 377 |
378 (defun math-diff-bignum (a b) ; [l l l] | |
379 (and a | |
380 (let ((qa (math-div-bignum-digit a 512)) | |
381 (qb (math-div-bignum-digit b 512))) | |
382 (math-mul-bignum-digit (math-diff-bignum (math-norm-bignum (car qa)) | |
383 (math-norm-bignum (car qb))) | |
384 512 | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
385 (logand (cdr qa) (lognot (cdr qb))))))) |
40785 | 386 |
387 (defun calcFunc-not (a &optional w) ; [I I] [Public] | |
388 (cond ((Math-messy-integerp w) | |
389 (calcFunc-not a (math-trunc w))) | |
390 ((eq (car-safe a) 'mod) | |
391 (math-binary-modulo-args 'calcFunc-not a nil w)) | |
392 ((and w (not (integerp w))) | |
393 (math-reject-arg w 'fixnump)) | |
394 ((not (Math-num-integerp a)) | |
395 (math-reject-arg a 'integerp)) | |
396 ((< (or w (setq w calc-word-size)) 0) | |
397 (math-clip (calcFunc-not a (- w)) w)) | |
398 (t (math-normalize | |
399 (cons 'bigpos | |
400 (math-not-bignum (math-binary-arg a w) | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
401 w)))))) |
40785 | 402 |
403 (defun math-not-bignum (a w) ; [l l] | |
404 (let ((q (math-div-bignum-digit a 512))) | |
405 (if (<= w 9) | |
406 (list (logand (lognot (cdr q)) | |
407 (1- (lsh 1 w)))) | |
408 (math-mul-bignum-digit (math-not-bignum (math-norm-bignum (car q)) | |
409 (- w 9)) | |
410 512 | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
411 (logxor (cdr q) 511))))) |
40785 | 412 |
413 (defun calcFunc-lsh (a &optional n w) ; [I I] [Public] | |
414 (setq a (math-trunc a) | |
415 n (if n (math-trunc n) 1)) | |
416 (if (eq (car-safe a) 'mod) | |
417 (math-binary-modulo-args 'calcFunc-lsh a n w) | |
418 (setq w (if w (math-trunc w) calc-word-size)) | |
419 (or (integerp w) | |
420 (math-reject-arg w 'fixnump)) | |
421 (or (Math-integerp a) | |
422 (math-reject-arg a 'integerp)) | |
423 (or (Math-integerp n) | |
424 (math-reject-arg n 'integerp)) | |
425 (if (< w 0) | |
426 (math-clip (calcFunc-lsh a n (- w)) w) | |
427 (if (Math-integer-negp a) | |
428 (setq a (math-clip a w))) | |
429 (cond ((or (Math-lessp n (- w)) | |
430 (Math-lessp w n)) | |
431 0) | |
432 ((< n 0) | |
433 (math-quotient (math-clip a w) (math-power-of-2 (- n)))) | |
434 (t | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
435 (math-clip (math-mul a (math-power-of-2 n)) w)))))) |
40785 | 436 |
437 (defun calcFunc-rsh (a &optional n w) ; [I I] [Public] | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
438 (calcFunc-lsh a (math-neg (or n 1)) w)) |
40785 | 439 |
440 (defun calcFunc-ash (a &optional n w) ; [I I] [Public] | |
441 (if (or (null n) | |
442 (not (Math-negp n))) | |
443 (calcFunc-lsh a n w) | |
444 (setq a (math-trunc a) | |
445 n (if n (math-trunc n) 1)) | |
446 (if (eq (car-safe a) 'mod) | |
447 (math-binary-modulo-args 'calcFunc-ash a n w) | |
448 (setq w (if w (math-trunc w) calc-word-size)) | |
449 (or (integerp w) | |
450 (math-reject-arg w 'fixnump)) | |
451 (or (Math-integerp a) | |
452 (math-reject-arg a 'integerp)) | |
453 (or (Math-integerp n) | |
454 (math-reject-arg n 'integerp)) | |
455 (if (< w 0) | |
456 (math-clip (calcFunc-ash a n (- w)) w) | |
457 (if (Math-integer-negp a) | |
458 (setq a (math-clip a w))) | |
459 (let ((two-to-sizem1 (math-power-of-2 (1- w))) | |
460 (sh (calcFunc-lsh a n w))) | |
461 (cond ((Math-natnum-lessp a two-to-sizem1) | |
462 sh) | |
463 ((Math-lessp n (- 1 w)) | |
464 (math-add (math-mul two-to-sizem1 2) -1)) | |
465 (t (let ((two-to-n (math-power-of-2 (- n)))) | |
466 (math-add (calcFunc-lsh (math-add two-to-n -1) | |
467 (+ w n) w) | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
468 sh))))))))) |
40785 | 469 |
470 (defun calcFunc-rash (a &optional n w) ; [I I] [Public] | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
471 (calcFunc-ash a (math-neg (or n 1)) w)) |
40785 | 472 |
473 (defun calcFunc-rot (a &optional n w) ; [I I] [Public] | |
474 (setq a (math-trunc a) | |
475 n (if n (math-trunc n) 1)) | |
476 (if (eq (car-safe a) 'mod) | |
477 (math-binary-modulo-args 'calcFunc-rot a n w) | |
478 (setq w (if w (math-trunc w) calc-word-size)) | |
479 (or (integerp w) | |
480 (math-reject-arg w 'fixnump)) | |
481 (or (Math-integerp a) | |
482 (math-reject-arg a 'integerp)) | |
483 (or (Math-integerp n) | |
484 (math-reject-arg n 'integerp)) | |
485 (if (< w 0) | |
486 (math-clip (calcFunc-rot a n (- w)) w) | |
487 (if (Math-integer-negp a) | |
488 (setq a (math-clip a w))) | |
489 (cond ((or (Math-integer-negp n) | |
490 (not (Math-natnum-lessp n w))) | |
491 (calcFunc-rot a (math-mod n w) w)) | |
492 (t | |
493 (math-add (calcFunc-lsh a (- n w) w) | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
494 (calcFunc-lsh a n w))))))) |
40785 | 495 |
496 (defun math-clip (a &optional w) ; [I I] [Public] | |
497 (cond ((Math-messy-integerp w) | |
498 (math-clip a (math-trunc w))) | |
499 ((eq (car-safe a) 'mod) | |
500 (math-binary-modulo-args 'math-clip a nil w)) | |
501 ((and w (not (integerp w))) | |
502 (math-reject-arg w 'fixnump)) | |
503 ((not (Math-num-integerp a)) | |
504 (math-reject-arg a 'integerp)) | |
505 ((< (or w (setq w calc-word-size)) 0) | |
506 (setq a (math-clip a (- w))) | |
507 (if (Math-natnum-lessp a (math-power-of-2 (- -1 w))) | |
508 a | |
509 (math-sub a (math-power-of-2 (- w))))) | |
510 ((Math-negp a) | |
511 (math-normalize (cons 'bigpos (math-binary-arg a w)))) | |
512 ((and (integerp a) (< a 1000000)) | |
513 (if (>= w 20) | |
514 a | |
515 (logand a (1- (lsh 1 w))))) | |
516 (t | |
517 (math-normalize | |
518 (cons 'bigpos | |
519 (math-clip-bignum (cdr (math-bignum-test (math-trunc a))) | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
520 w)))))) |
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
521 |
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
522 (defalias 'calcFunc-clip 'math-clip) |
40785 | 523 |
524 (defun math-clip-bignum (a w) ; [l l] | |
525 (let ((q (math-div-bignum-digit a 512))) | |
526 (if (<= w 9) | |
527 (list (logand (cdr q) | |
528 (1- (lsh 1 w)))) | |
529 (math-mul-bignum-digit (math-clip-bignum (math-norm-bignum (car q)) | |
530 (- w 9)) | |
531 512 | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
532 (cdr q))))) |
40785 | 533 |
534 (defvar math-max-digits-cache nil) | |
535 (defun math-compute-max-digits (w r) | |
536 (let* ((pair (+ (* r 100000) w)) | |
537 (res (assq pair math-max-digits-cache))) | |
538 (if res | |
539 (cdr res) | |
540 (let* ((calc-command-flags nil) | |
541 (digs (math-ceiling (math-div w (math-real-log2 r))))) | |
542 (setq math-max-digits-cache (cons (cons pair digs) | |
543 math-max-digits-cache)) | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
544 digs)))) |
40785 | 545 |
546 (defvar math-log2-cache (list '(2 . 1) | |
547 '(4 . 2) | |
548 '(8 . 3) | |
549 '(10 . (float 332193 -5)) | |
550 '(16 . 4) | |
551 '(32 . 5))) | |
552 (defun math-real-log2 (x) ;;; calc-internal-prec must be 6 | |
553 (let ((res (assq x math-log2-cache))) | |
554 (if res | |
555 (cdr res) | |
556 (let* ((calc-symbolic-mode nil) | |
557 (calc-display-working-message nil) | |
558 (log (calcFunc-log x 2))) | |
559 (setq math-log2-cache (cons (cons x log) math-log2-cache)) | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
560 log)))) |
40785 | 561 |
562 (defconst math-radix-digits ["0" "1" "2" "3" "4" "5" "6" "7" "8" "9" | |
563 "A" "B" "C" "D" "E" "F" "G" "H" "I" "J" | |
564 "K" "L" "M" "N" "O" "P" "Q" "R" "S" "T" | |
565 "U" "V" "W" "X" "Y" "Z"]) | |
566 | |
41271
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41042
diff
changeset
|
567 (defsubst math-format-radix-digit (a) ; [X D] |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41042
diff
changeset
|
568 (aref math-radix-digits a)) |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41042
diff
changeset
|
569 |
40785 | 570 (defun math-format-radix (a) ; [X S] |
571 (if (< a calc-number-radix) | |
572 (if (< a 0) | |
573 (concat "-" (math-format-radix (- a))) | |
574 (math-format-radix-digit a)) | |
575 (let ((s "")) | |
576 (while (> a 0) | |
577 (setq s (concat (math-format-radix-digit (% a calc-number-radix)) s) | |
578 a (/ a calc-number-radix))) | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
579 s))) |
40785 | 580 |
581 (defconst math-binary-digits ["000" "001" "010" "011" | |
582 "100" "101" "110" "111"]) | |
583 (defun math-format-binary (a) ; [X S] | |
584 (if (< a 8) | |
585 (if (< a 0) | |
586 (concat "-" (math-format-binary (- a))) | |
587 (math-format-radix a)) | |
588 (let ((s "")) | |
589 (while (> a 7) | |
590 (setq s (concat (aref math-binary-digits (% a 8)) s) | |
591 a (/ a 8))) | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
592 (concat (math-format-radix a) s)))) |
40785 | 593 |
594 (defun math-format-bignum-radix (a) ; [X L] | |
595 (cond ((null a) "0") | |
596 ((and (null (cdr a)) | |
597 (< (car a) calc-number-radix)) | |
598 (math-format-radix-digit (car a))) | |
599 (t | |
600 (let ((q (math-div-bignum-digit a calc-number-radix))) | |
601 (concat (math-format-bignum-radix (math-norm-bignum (car q))) | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
602 (math-format-radix-digit (cdr q))))))) |
40785 | 603 |
604 (defun math-format-bignum-binary (a) ; [X L] | |
605 (cond ((null a) "0") | |
606 ((null (cdr a)) | |
607 (math-format-binary (car a))) | |
608 (t | |
609 (let ((q (math-div-bignum-digit a 512))) | |
610 (concat (math-format-bignum-binary (math-norm-bignum (car q))) | |
611 (aref math-binary-digits (/ (cdr q) 64)) | |
612 (aref math-binary-digits (% (/ (cdr q) 8) 8)) | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
613 (aref math-binary-digits (% (cdr q) 8))))))) |
40785 | 614 |
615 (defun math-format-bignum-octal (a) ; [X L] | |
616 (cond ((null a) "0") | |
617 ((null (cdr a)) | |
618 (math-format-radix (car a))) | |
619 (t | |
620 (let ((q (math-div-bignum-digit a 512))) | |
621 (concat (math-format-bignum-octal (math-norm-bignum (car q))) | |
622 (math-format-radix-digit (/ (cdr q) 64)) | |
623 (math-format-radix-digit (% (/ (cdr q) 8) 8)) | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
624 (math-format-radix-digit (% (cdr q) 8))))))) |
40785 | 625 |
626 (defun math-format-bignum-hex (a) ; [X L] | |
627 (cond ((null a) "0") | |
628 ((null (cdr a)) | |
629 (math-format-radix (car a))) | |
630 (t | |
631 (let ((q (math-div-bignum-digit a 256))) | |
632 (concat (math-format-bignum-hex (math-norm-bignum (car q))) | |
633 (math-format-radix-digit (/ (cdr q) 16)) | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
634 (math-format-radix-digit (% (cdr q) 16))))))) |
40785 | 635 |
636 ;;; Decompose into integer and fractional parts, without depending | |
637 ;;; on calc-internal-prec. | |
638 (defun math-float-parts (a need-frac) ; returns ( int frac fracdigs ) | |
639 (if (>= (nth 2 a) 0) | |
640 (list (math-scale-rounding (nth 1 a) (nth 2 a)) '(float 0 0) 0) | |
641 (let* ((d (math-numdigs (nth 1 a))) | |
642 (n (- (nth 2 a)))) | |
643 (if need-frac | |
644 (if (>= n d) | |
645 (list 0 a n) | |
646 (let ((qr (math-idivmod (nth 1 a) (math-scale-int 1 n)))) | |
647 (list (car qr) (math-make-float (cdr qr) (- n)) n))) | |
648 (list (math-scale-rounding (nth 1 a) (nth 2 a)) | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
649 '(float 0 0) 0))))) |
40785 | 650 |
651 (defun math-format-radix-float (a prec) | |
652 (let ((fmt (car calc-float-format)) | |
653 (figs (nth 1 calc-float-format)) | |
654 (point calc-point-char) | |
58553
1c7dfa5d5967
(math-format-radix-float): Make pos a local variable.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
655 (str nil) |
1c7dfa5d5967
(math-format-radix-float): Make pos a local variable.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
656 pos) |
40785 | 657 (if (eq fmt 'fix) |
658 (let* ((afigs (math-abs figs)) | |
659 (fp (math-float-parts a (> afigs 0))) | |
660 (calc-internal-prec (+ 3 (max (nth 2 fp) | |
661 (math-convert-radix-digits | |
662 afigs t)))) | |
663 (int (car fp)) | |
664 (frac (math-round (math-mul (math-normalize (nth 1 fp)) | |
665 (math-radix-float-power afigs))))) | |
666 (if (not (and (math-zerop frac) (math-zerop int) (< figs 0))) | |
667 (let ((math-radix-explicit-format nil)) | |
668 (let ((calc-group-digits nil)) | |
669 (setq str (if (> afigs 0) (math-format-number frac) "")) | |
670 (if (< (length str) afigs) | |
671 (setq str (concat (make-string (- afigs (length str)) ?0) | |
672 str)) | |
673 (if (> (length str) afigs) | |
674 (setq str (substring str 1) | |
675 int (math-add int 1)))) | |
676 (setq str (concat (math-format-number int) point str))) | |
44572
9e404d7dbe1d
(math-format-radix-float): Load `calc-ext' before we call `math-group-float'.
Colin Walters <walters@gnu.org>
parents:
41271
diff
changeset
|
677 (when calc-group-digits |
9e404d7dbe1d
(math-format-radix-float): Load `calc-ext' before we call `math-group-float'.
Colin Walters <walters@gnu.org>
parents:
41271
diff
changeset
|
678 (setq str (math-group-float str)))) |
40785 | 679 (setq figs 0)))) |
680 (or str | |
681 (let* ((prec calc-internal-prec) | |
682 (afigs (if (> figs 0) | |
683 figs | |
684 (max 1 (+ figs | |
685 (1- (math-convert-radix-digits | |
686 (max prec | |
687 (math-numdigs (nth 1 a))))))))) | |
688 (calc-internal-prec (+ 3 (math-convert-radix-digits afigs t))) | |
689 (explo -1) (vlo (math-radix-float-power explo)) | |
690 (exphi 1) (vhi (math-radix-float-power exphi)) | |
691 expmid vmid eadj) | |
692 (setq a (math-normalize a)) | |
693 (if (Math-zerop a) | |
694 (setq explo 0) | |
695 (if (math-lessp-float '(float 1 0) a) | |
696 (while (not (math-lessp-float a vhi)) | |
697 (setq explo exphi vlo vhi | |
698 exphi (math-mul exphi 2) | |
699 vhi (math-radix-float-power exphi))) | |
700 (while (math-lessp-float a vlo) | |
701 (setq exphi explo vhi vlo | |
702 explo (math-mul explo 2) | |
703 vlo (math-radix-float-power explo)))) | |
704 (while (not (eq (math-sub exphi explo) 1)) | |
705 (setq expmid (math-div2 (math-add explo exphi)) | |
706 vmid (math-radix-float-power expmid)) | |
707 (if (math-lessp-float a vmid) | |
708 (setq exphi expmid vhi vmid) | |
709 (setq explo expmid vlo vmid))) | |
710 (setq a (math-div-float a vlo))) | |
711 (let* ((sc (math-round (math-mul a (math-radix-float-power | |
712 (1- afigs))))) | |
713 (math-radix-explicit-format nil)) | |
714 (let ((calc-group-digits nil)) | |
715 (setq str (math-format-number sc)))) | |
716 (if (> (length str) afigs) | |
717 (setq str (substring str 0 -1) | |
718 explo (1+ explo))) | |
719 (if (and (eq fmt 'float) | |
720 (math-lessp explo (+ (if (= figs 0) | |
721 (1- (math-convert-radix-digits | |
722 prec)) | |
723 afigs) | |
724 calc-display-sci-high 1)) | |
725 (math-lessp calc-display-sci-low explo)) | |
726 (let ((dpos (1+ explo))) | |
727 (cond ((<= dpos 0) | |
728 (setq str (concat "0" point (make-string (- dpos) ?0) | |
729 str))) | |
730 ((> dpos (length str)) | |
731 (setq str (concat str (make-string (- dpos (length str)) | |
732 ?0) point))) | |
733 (t | |
734 (setq str (concat (substring str 0 dpos) point | |
735 (substring str dpos))))) | |
736 (setq explo nil)) | |
737 (setq eadj (if (eq fmt 'eng) | |
738 (min (math-mod explo 3) (length str)) | |
739 0) | |
740 str (concat (substring str 0 (1+ eadj)) point | |
741 (substring str (1+ eadj))))) | |
742 (setq pos (length str)) | |
743 (while (eq (aref str (1- pos)) ?0) (setq pos (1- pos))) | |
744 (and explo (eq (aref str (1- pos)) ?.) (setq pos (1- pos))) | |
745 (setq str (substring str 0 pos)) | |
44572
9e404d7dbe1d
(math-format-radix-float): Load `calc-ext' before we call `math-group-float'.
Colin Walters <walters@gnu.org>
parents:
41271
diff
changeset
|
746 (when calc-group-digits |
9e404d7dbe1d
(math-format-radix-float): Load `calc-ext' before we call `math-group-float'.
Colin Walters <walters@gnu.org>
parents:
41271
diff
changeset
|
747 (setq str (math-group-float str))) |
40785 | 748 (if explo |
749 (let ((estr (let ((calc-number-radix 10) | |
750 (calc-group-digits nil)) | |
58553
1c7dfa5d5967
(math-format-radix-float): Make pos a local variable.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
751 (math-format-number |
1c7dfa5d5967
(math-format-radix-float): Make pos a local variable.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
752 (math-sub explo eadj))))) |
40785 | 753 (setq str (if (or (memq calc-language '(math maple)) |
754 (> calc-number-radix 14)) | |
755 (format "%s*%d.^%s" str calc-number-radix estr) | |
756 (format "%se%s" str estr))))))) | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
757 str)) |
40785 | 758 |
41271
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41042
diff
changeset
|
759 (defvar math-radix-digits-cache nil) |
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41042
diff
changeset
|
760 |
40785 | 761 (defun math-convert-radix-digits (n &optional to-dec) |
762 (let ((key (cons n (cons to-dec calc-number-radix)))) | |
763 (or (cdr (assoc key math-radix-digits-cache)) | |
764 (let* ((calc-internal-prec 6) | |
765 (log (math-div (math-real-log2 calc-number-radix) | |
766 '(float 332193 -5)))) | |
767 (cdr (car (setq math-radix-digits-cache | |
768 (cons (cons key (math-ceiling (if to-dec | |
769 (math-mul n log) | |
770 (math-div n log)))) | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
771 math-radix-digits-cache)))))))) |
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
772 |
41271
fcd507927105
Change all toplevel `setq' forms to `defvar' forms, and move them
Colin Walters <walters@gnu.org>
parents:
41042
diff
changeset
|
773 (defvar math-radix-float-cache-tag nil) |
58553
1c7dfa5d5967
(math-format-radix-float): Make pos a local variable.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
52401
diff
changeset
|
774 (defvar math-radix-float-cache) |
40785 | 775 |
776 (defun math-radix-float-power (n) | |
777 (if (eq n 0) | |
778 '(float 1 0) | |
779 (or (and (eq calc-number-radix (car math-radix-float-cache-tag)) | |
780 (<= calc-internal-prec (cdr math-radix-float-cache-tag))) | |
781 (setq math-radix-float-cache-tag (cons calc-number-radix | |
782 calc-internal-prec) | |
783 math-radix-float-cache nil)) | |
784 (math-normalize | |
785 (or (cdr (assoc n math-radix-float-cache)) | |
786 (cdr (car (setq math-radix-float-cache | |
787 (cons (cons | |
788 n | |
789 (let ((calc-internal-prec | |
790 (cdr math-radix-float-cache-tag))) | |
791 (if (math-negp n) | |
792 (math-div-float '(float 1 0) | |
793 (math-radix-float-power | |
794 (math-neg n))) | |
795 (math-mul-float (math-sqr-float | |
796 (math-radix-float-power | |
797 (math-div2 n))) | |
798 (if (math-evenp n) | |
799 '(float 1 0) | |
800 (math-float | |
801 calc-number-radix)))))) | |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
802 math-radix-float-cache)))))))) |
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
803 |
58648
617cbf064b4b
Add a provide statement.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
58553
diff
changeset
|
804 (provide 'calc-bin) |
40785 | 805 |
52401 | 806 ;;; arch-tag: f6dba7bc-53b2-41ae-919c-c266ab0ca8b3 |
41042
a78b609cb4b1
(calcFunc-clip): Use `defalias' instead of `fset' and
Colin Walters <walters@gnu.org>
parents:
40785
diff
changeset
|
807 ;;; calc-bin.el ends here |