]> code.delx.au - gnu-emacs/blob - lisp/calc/calc-ext.el
(calc-inverse, calc-hyperbolic): Give more thorough messages.
[gnu-emacs] / lisp / calc / calc-ext.el
1 ;;; calc-ext.el --- various extension functions for Calc
2
3 ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2004 Free Software Foundation, Inc.
4
5 ;; Author: David Gillespie <daveg@synaptics.com>
6 ;; Maintainer: Jay Belanger <belanger@truman.edu>
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
25 ;;; Commentary:
26
27 ;;; Code:
28
29 (require 'calc)
30 (require 'calc-macs)
31
32 (defvar math-simplifying nil)
33 (defvar math-living-dangerously nil) ; true if unsafe simplifications are okay.
34 (defvar math-integrating nil)
35
36 (defvar math-rewrite-selections nil)
37
38 (defvar math-compose-level 0)
39 (defvar math-comp-selected nil)
40 (defvar math-comp-tagged nil)
41 (defvar math-comp-sel-hpos nil)
42 (defvar math-comp-sel-vpos nil)
43 (defvar math-comp-sel-cpos nil)
44 (defvar math-compose-hash-args nil)
45
46 ;;; The following was made a function so that it could be byte-compiled.
47 (defun calc-init-extensions ()
48
49 (define-key calc-mode-map ":" 'calc-fdiv)
50 (define-key calc-mode-map "\\" 'calc-idiv)
51 (define-key calc-mode-map "|" 'calc-concat)
52 (define-key calc-mode-map "!" 'calc-factorial)
53 (define-key calc-mode-map "C" 'calc-cos)
54 (define-key calc-mode-map "E" 'calc-exp)
55 (define-key calc-mode-map "H" 'calc-hyperbolic)
56 (define-key calc-mode-map "I" 'calc-inverse)
57 (define-key calc-mode-map "J" 'calc-conj)
58 (define-key calc-mode-map "L" 'calc-ln)
59 (define-key calc-mode-map "N" 'calc-eval-num)
60 (define-key calc-mode-map "P" 'calc-pi)
61 (define-key calc-mode-map "Q" 'calc-sqrt)
62 (define-key calc-mode-map "R" 'calc-round)
63 (define-key calc-mode-map "S" 'calc-sin)
64 (define-key calc-mode-map "T" 'calc-tan)
65 (define-key calc-mode-map "U" 'calc-undo)
66 (define-key calc-mode-map "X" 'calc-call-last-kbd-macro)
67 (define-key calc-mode-map "o" 'calc-realign)
68 (define-key calc-mode-map "p" 'calc-precision)
69 (define-key calc-mode-map "w" 'calc-why)
70 (define-key calc-mode-map "x" 'calc-execute-extended-command)
71 (define-key calc-mode-map "y" 'calc-copy-to-buffer)
72
73 (define-key calc-mode-map "(" 'calc-begin-complex)
74 (define-key calc-mode-map ")" 'calc-end-complex)
75 (define-key calc-mode-map "[" 'calc-begin-vector)
76 (define-key calc-mode-map "]" 'calc-end-vector)
77 (define-key calc-mode-map "," 'calc-comma)
78 (define-key calc-mode-map ";" 'calc-semi)
79 (define-key calc-mode-map "`" 'calc-edit)
80 (define-key calc-mode-map "=" 'calc-evaluate)
81 (define-key calc-mode-map "~" 'calc-num-prefix)
82 (define-key calc-mode-map "<" 'calc-scroll-left)
83 (define-key calc-mode-map ">" 'calc-scroll-right)
84 (define-key calc-mode-map "{" 'calc-scroll-down)
85 (define-key calc-mode-map "}" 'calc-scroll-up)
86 (define-key calc-mode-map "\C-k" 'calc-kill)
87 (define-key calc-mode-map "\M-k" 'calc-copy-as-kill)
88 (define-key calc-mode-map "\C-w" 'calc-kill-region)
89 (define-key calc-mode-map "\M-w" 'calc-copy-region-as-kill)
90 (define-key calc-mode-map "\C-y" 'calc-yank)
91 (define-key calc-mode-map [mouse-2] 'calc-yank)
92 (define-key calc-mode-map "\C-_" 'calc-undo)
93 (define-key calc-mode-map "\C-xu" 'calc-undo)
94 (define-key calc-mode-map "\M-\C-m" 'calc-last-args)
95
96 (define-key calc-mode-map "a" nil)
97 (define-key calc-mode-map "a?" 'calc-a-prefix-help)
98 (define-key calc-mode-map "aa" 'calc-apart)
99 (define-key calc-mode-map "ab" 'calc-substitute)
100 (define-key calc-mode-map "ac" 'calc-collect)
101 (define-key calc-mode-map "ad" 'calc-derivative)
102 (define-key calc-mode-map "ae" 'calc-simplify-extended)
103 (define-key calc-mode-map "af" 'calc-factor)
104 (define-key calc-mode-map "ag" 'calc-poly-gcd)
105 (define-key calc-mode-map "ai" 'calc-integral)
106 (define-key calc-mode-map "am" 'calc-match)
107 (define-key calc-mode-map "an" 'calc-normalize-rat)
108 (define-key calc-mode-map "ap" 'calc-poly-interp)
109 (define-key calc-mode-map "ar" 'calc-rewrite)
110 (define-key calc-mode-map "as" 'calc-simplify)
111 (define-key calc-mode-map "at" 'calc-taylor)
112 (define-key calc-mode-map "av" 'calc-alg-evaluate)
113 (define-key calc-mode-map "ax" 'calc-expand)
114 (define-key calc-mode-map "aA" 'calc-abs)
115 (define-key calc-mode-map "aF" 'calc-curve-fit)
116 (define-key calc-mode-map "aI" 'calc-num-integral)
117 (define-key calc-mode-map "aM" 'calc-map-equation)
118 (define-key calc-mode-map "aN" 'calc-find-minimum)
119 (define-key calc-mode-map "aP" 'calc-poly-roots)
120 (define-key calc-mode-map "aS" 'calc-solve-for)
121 (define-key calc-mode-map "aR" 'calc-find-root)
122 (define-key calc-mode-map "aT" 'calc-tabulate)
123 (define-key calc-mode-map "aX" 'calc-find-maximum)
124 (define-key calc-mode-map "a+" 'calc-summation)
125 (define-key calc-mode-map "a-" 'calc-alt-summation)
126 (define-key calc-mode-map "a*" 'calc-product)
127 (define-key calc-mode-map "a\\" 'calc-poly-div)
128 (define-key calc-mode-map "a%" 'calc-poly-rem)
129 (define-key calc-mode-map "a/" 'calc-poly-div-rem)
130 (define-key calc-mode-map "a=" 'calc-equal-to)
131 (define-key calc-mode-map "a#" 'calc-not-equal-to)
132 (define-key calc-mode-map "a<" 'calc-less-than)
133 (define-key calc-mode-map "a>" 'calc-greater-than)
134 (define-key calc-mode-map "a[" 'calc-less-equal)
135 (define-key calc-mode-map "a]" 'calc-greater-equal)
136 (define-key calc-mode-map "a." 'calc-remove-equal)
137 (define-key calc-mode-map "a{" 'calc-in-set)
138 (define-key calc-mode-map "a&" 'calc-logical-and)
139 (define-key calc-mode-map "a|" 'calc-logical-or)
140 (define-key calc-mode-map "a!" 'calc-logical-not)
141 (define-key calc-mode-map "a:" 'calc-logical-if)
142 (define-key calc-mode-map "a_" 'calc-subscript)
143 (define-key calc-mode-map "a\"" 'calc-expand-formula)
144
145 (define-key calc-mode-map "b" nil)
146 (define-key calc-mode-map "b?" 'calc-b-prefix-help)
147 (define-key calc-mode-map "ba" 'calc-and)
148 (define-key calc-mode-map "bc" 'calc-clip)
149 (define-key calc-mode-map "bd" 'calc-diff)
150 (define-key calc-mode-map "bl" 'calc-lshift-binary)
151 (define-key calc-mode-map "bn" 'calc-not)
152 (define-key calc-mode-map "bo" 'calc-or)
153 (define-key calc-mode-map "bp" 'calc-pack-bits)
154 (define-key calc-mode-map "br" 'calc-rshift-binary)
155 (define-key calc-mode-map "bt" 'calc-rotate-binary)
156 (define-key calc-mode-map "bu" 'calc-unpack-bits)
157 (define-key calc-mode-map "bw" 'calc-word-size)
158 (define-key calc-mode-map "bx" 'calc-xor)
159 (define-key calc-mode-map "bB" 'calc-log)
160 (define-key calc-mode-map "bD" 'calc-fin-ddb)
161 (define-key calc-mode-map "bF" 'calc-fin-fv)
162 (define-key calc-mode-map "bI" 'calc-fin-irr)
163 (define-key calc-mode-map "bL" 'calc-lshift-arith)
164 (define-key calc-mode-map "bM" 'calc-fin-pmt)
165 (define-key calc-mode-map "bN" 'calc-fin-npv)
166 (define-key calc-mode-map "bP" 'calc-fin-pv)
167 (define-key calc-mode-map "bR" 'calc-rshift-arith)
168 (define-key calc-mode-map "bS" 'calc-fin-sln)
169 (define-key calc-mode-map "bT" 'calc-fin-rate)
170 (define-key calc-mode-map "bY" 'calc-fin-syd)
171 (define-key calc-mode-map "b#" 'calc-fin-nper)
172 (define-key calc-mode-map "b%" 'calc-percent-change)
173
174 (define-key calc-mode-map "c" nil)
175 (define-key calc-mode-map "c?" 'calc-c-prefix-help)
176 (define-key calc-mode-map "cc" 'calc-clean)
177 (define-key calc-mode-map "cd" 'calc-to-degrees)
178 (define-key calc-mode-map "cf" 'calc-float)
179 (define-key calc-mode-map "ch" 'calc-to-hms)
180 (define-key calc-mode-map "cp" 'calc-polar)
181 (define-key calc-mode-map "cr" 'calc-to-radians)
182 (define-key calc-mode-map "cC" 'calc-cos)
183 (define-key calc-mode-map "cF" 'calc-fraction)
184 (define-key calc-mode-map "c%" 'calc-convert-percent)
185
186 (define-key calc-mode-map "d" nil)
187 (define-key calc-mode-map "d?" 'calc-d-prefix-help)
188 (define-key calc-mode-map "d0" 'calc-decimal-radix)
189 (define-key calc-mode-map "d2" 'calc-binary-radix)
190 (define-key calc-mode-map "d6" 'calc-hex-radix)
191 (define-key calc-mode-map "d8" 'calc-octal-radix)
192 (define-key calc-mode-map "db" 'calc-line-breaking)
193 (define-key calc-mode-map "dc" 'calc-complex-notation)
194 (define-key calc-mode-map "dd" 'calc-date-notation)
195 (define-key calc-mode-map "de" 'calc-eng-notation)
196 (define-key calc-mode-map "df" 'calc-fix-notation)
197 (define-key calc-mode-map "dg" 'calc-group-digits)
198 (define-key calc-mode-map "dh" 'calc-hms-notation)
199 (define-key calc-mode-map "di" 'calc-i-notation)
200 (define-key calc-mode-map "dj" 'calc-j-notation)
201 (define-key calc-mode-map "dl" 'calc-line-numbering)
202 (define-key calc-mode-map "dn" 'calc-normal-notation)
203 (define-key calc-mode-map "do" 'calc-over-notation)
204 (define-key calc-mode-map "dp" 'calc-show-plain)
205 (define-key calc-mode-map "dr" 'calc-radix)
206 (define-key calc-mode-map "ds" 'calc-sci-notation)
207 (define-key calc-mode-map "dt" 'calc-truncate-stack)
208 (define-key calc-mode-map "dw" 'calc-auto-why)
209 (define-key calc-mode-map "dz" 'calc-leading-zeros)
210 (define-key calc-mode-map "dB" 'calc-big-language)
211 (define-key calc-mode-map "dD" 'calc-redo)
212 (define-key calc-mode-map "dC" 'calc-c-language)
213 (define-key calc-mode-map "dE" 'calc-eqn-language)
214 (define-key calc-mode-map "dF" 'calc-fortran-language)
215 (define-key calc-mode-map "dM" 'calc-mathematica-language)
216 (define-key calc-mode-map "dN" 'calc-normal-language)
217 (define-key calc-mode-map "dO" 'calc-flat-language)
218 (define-key calc-mode-map "dP" 'calc-pascal-language)
219 (define-key calc-mode-map "dT" 'calc-tex-language)
220 (define-key calc-mode-map "dU" 'calc-unformatted-language)
221 (define-key calc-mode-map "dW" 'calc-maple-language)
222 (define-key calc-mode-map "d[" 'calc-truncate-up)
223 (define-key calc-mode-map "d]" 'calc-truncate-down)
224 (define-key calc-mode-map "d." 'calc-point-char)
225 (define-key calc-mode-map "d," 'calc-group-char)
226 (define-key calc-mode-map "d\"" 'calc-display-strings)
227 (define-key calc-mode-map "d<" 'calc-left-justify)
228 (define-key calc-mode-map "d=" 'calc-center-justify)
229 (define-key calc-mode-map "d>" 'calc-right-justify)
230 (define-key calc-mode-map "d{" 'calc-left-label)
231 (define-key calc-mode-map "d}" 'calc-right-label)
232 (define-key calc-mode-map "d'" 'calc-display-raw)
233 (define-key calc-mode-map "d " 'calc-refresh)
234 (define-key calc-mode-map "d\r" 'calc-refresh-top)
235 (define-key calc-mode-map "d@" 'calc-toggle-banner)
236
237 (define-key calc-mode-map "f" nil)
238 (define-key calc-mode-map "f?" 'calc-f-prefix-help)
239 (define-key calc-mode-map "fb" 'calc-beta)
240 (define-key calc-mode-map "fe" 'calc-erf)
241 (define-key calc-mode-map "fg" 'calc-gamma)
242 (define-key calc-mode-map "fh" 'calc-hypot)
243 (define-key calc-mode-map "fi" 'calc-im)
244 (define-key calc-mode-map "fj" 'calc-bessel-J)
245 (define-key calc-mode-map "fn" 'calc-min)
246 (define-key calc-mode-map "fr" 'calc-re)
247 (define-key calc-mode-map "fs" 'calc-sign)
248 (define-key calc-mode-map "fx" 'calc-max)
249 (define-key calc-mode-map "fy" 'calc-bessel-Y)
250 (define-key calc-mode-map "fA" 'calc-abssqr)
251 (define-key calc-mode-map "fB" 'calc-inc-beta)
252 (define-key calc-mode-map "fE" 'calc-expm1)
253 (define-key calc-mode-map "fF" 'calc-floor)
254 (define-key calc-mode-map "fG" 'calc-inc-gamma)
255 (define-key calc-mode-map "fI" 'calc-ilog)
256 (define-key calc-mode-map "fL" 'calc-lnp1)
257 (define-key calc-mode-map "fM" 'calc-mant-part)
258 (define-key calc-mode-map "fQ" 'calc-isqrt)
259 (define-key calc-mode-map "fS" 'calc-scale-float)
260 (define-key calc-mode-map "fT" 'calc-arctan2)
261 (define-key calc-mode-map "fX" 'calc-xpon-part)
262 (define-key calc-mode-map "f[" 'calc-decrement)
263 (define-key calc-mode-map "f]" 'calc-increment)
264
265 (define-key calc-mode-map "g" nil)
266 (define-key calc-mode-map "g?" 'calc-g-prefix-help)
267 (define-key calc-mode-map "ga" 'calc-graph-add)
268 (define-key calc-mode-map "gb" 'calc-graph-border)
269 (define-key calc-mode-map "gc" 'calc-graph-clear)
270 (define-key calc-mode-map "gd" 'calc-graph-delete)
271 (define-key calc-mode-map "gf" 'calc-graph-fast)
272 (define-key calc-mode-map "gg" 'calc-graph-grid)
273 (define-key calc-mode-map "gh" 'calc-graph-header)
274 (define-key calc-mode-map "gk" 'calc-graph-key)
275 (define-key calc-mode-map "gj" 'calc-graph-juggle)
276 (define-key calc-mode-map "gl" 'calc-graph-log-x)
277 (define-key calc-mode-map "gn" 'calc-graph-name)
278 (define-key calc-mode-map "gp" 'calc-graph-plot)
279 (define-key calc-mode-map "gq" 'calc-graph-quit)
280 (define-key calc-mode-map "gr" 'calc-graph-range-x)
281 (define-key calc-mode-map "gs" 'calc-graph-line-style)
282 (define-key calc-mode-map "gt" 'calc-graph-title-x)
283 (define-key calc-mode-map "gv" 'calc-graph-view-commands)
284 (define-key calc-mode-map "gx" 'calc-graph-display)
285 (define-key calc-mode-map "gz" 'calc-graph-zero-x)
286 (define-key calc-mode-map "gA" 'calc-graph-add-3d)
287 (define-key calc-mode-map "gC" 'calc-graph-command)
288 (define-key calc-mode-map "gD" 'calc-graph-device)
289 (define-key calc-mode-map "gF" 'calc-graph-fast-3d)
290 (define-key calc-mode-map "gG" 'calc-argument)
291 (define-key calc-mode-map "gH" 'calc-graph-hide)
292 (define-key calc-mode-map "gK" 'calc-graph-kill)
293 (define-key calc-mode-map "gL" 'calc-graph-log-y)
294 (define-key calc-mode-map "gN" 'calc-graph-num-points)
295 (define-key calc-mode-map "gO" 'calc-graph-output)
296 (define-key calc-mode-map "gP" 'calc-graph-print)
297 (define-key calc-mode-map "gR" 'calc-graph-range-y)
298 (define-key calc-mode-map "gS" 'calc-graph-point-style)
299 (define-key calc-mode-map "gT" 'calc-graph-title-y)
300 (define-key calc-mode-map "gV" 'calc-graph-view-trail)
301 (define-key calc-mode-map "gX" 'calc-graph-geometry)
302 (define-key calc-mode-map "gZ" 'calc-graph-zero-y)
303 (define-key calc-mode-map "g\C-l" 'calc-graph-log-z)
304 (define-key calc-mode-map "g\C-r" 'calc-graph-range-z)
305 (define-key calc-mode-map "g\C-t" 'calc-graph-title-z)
306
307 (define-key calc-mode-map "h" 'calc-help-prefix)
308
309 (define-key calc-mode-map "j" nil)
310 (define-key calc-mode-map "j?" 'calc-j-prefix-help)
311 (define-key calc-mode-map "ja" 'calc-select-additional)
312 (define-key calc-mode-map "jb" 'calc-break-selections)
313 (define-key calc-mode-map "jc" 'calc-clear-selections)
314 (define-key calc-mode-map "jd" 'calc-show-selections)
315 (define-key calc-mode-map "je" 'calc-enable-selections)
316 (define-key calc-mode-map "jl" 'calc-select-less)
317 (define-key calc-mode-map "jm" 'calc-select-more)
318 (define-key calc-mode-map "jn" 'calc-select-next)
319 (define-key calc-mode-map "jo" 'calc-select-once)
320 (define-key calc-mode-map "jp" 'calc-select-previous)
321 (define-key calc-mode-map "jr" 'calc-rewrite-selection)
322 (define-key calc-mode-map "js" 'calc-select-here)
323 (define-key calc-mode-map "jv" 'calc-sel-evaluate)
324 (define-key calc-mode-map "ju" 'calc-unselect)
325 (define-key calc-mode-map "jC" 'calc-sel-commute)
326 (define-key calc-mode-map "jD" 'calc-sel-distribute)
327 (define-key calc-mode-map "jE" 'calc-sel-jump-equals)
328 (define-key calc-mode-map "jI" 'calc-sel-isolate)
329 (define-key calc-mode-map "jJ" 'calc-conj)
330 (define-key calc-mode-map "jL" 'calc-commute-left)
331 (define-key calc-mode-map "jM" 'calc-sel-merge)
332 (define-key calc-mode-map "jN" 'calc-sel-negate)
333 (define-key calc-mode-map "jO" 'calc-select-once-maybe)
334 (define-key calc-mode-map "jR" 'calc-commute-right)
335 (define-key calc-mode-map "jS" 'calc-select-here-maybe)
336 (define-key calc-mode-map "jU" 'calc-sel-unpack)
337 (define-key calc-mode-map "j&" 'calc-sel-invert)
338 (define-key calc-mode-map "j\r" 'calc-copy-selection)
339 (define-key calc-mode-map "j\n" 'calc-copy-selection)
340 (define-key calc-mode-map "j\010" 'calc-del-selection)
341 (define-key calc-mode-map "j\177" 'calc-del-selection)
342 (define-key calc-mode-map "j'" 'calc-enter-selection)
343 (define-key calc-mode-map "j`" 'calc-edit-selection)
344 (define-key calc-mode-map "j+" 'calc-sel-add-both-sides)
345 (define-key calc-mode-map "j-" 'calc-sel-sub-both-sides)
346 (define-key calc-mode-map "j*" 'calc-sel-mult-both-sides)
347 (define-key calc-mode-map "j/" 'calc-sel-div-both-sides)
348 (define-key calc-mode-map "j\"" 'calc-sel-expand-formula)
349
350 (define-key calc-mode-map "k" nil)
351 (define-key calc-mode-map "k?" 'calc-k-prefix-help)
352 (define-key calc-mode-map "ka" 'calc-random-again)
353 (define-key calc-mode-map "kb" 'calc-bernoulli-number)
354 (define-key calc-mode-map "kc" 'calc-choose)
355 (define-key calc-mode-map "kd" 'calc-double-factorial)
356 (define-key calc-mode-map "ke" 'calc-euler-number)
357 (define-key calc-mode-map "kf" 'calc-prime-factors)
358 (define-key calc-mode-map "kg" 'calc-gcd)
359 (define-key calc-mode-map "kh" 'calc-shuffle)
360 (define-key calc-mode-map "kl" 'calc-lcm)
361 (define-key calc-mode-map "km" 'calc-moebius)
362 (define-key calc-mode-map "kn" 'calc-next-prime)
363 (define-key calc-mode-map "kp" 'calc-prime-test)
364 (define-key calc-mode-map "kr" 'calc-random)
365 (define-key calc-mode-map "ks" 'calc-stirling-number)
366 (define-key calc-mode-map "kt" 'calc-totient)
367 (define-key calc-mode-map "kB" 'calc-utpb)
368 (define-key calc-mode-map "kC" 'calc-utpc)
369 (define-key calc-mode-map "kE" 'calc-extended-gcd)
370 (define-key calc-mode-map "kF" 'calc-utpf)
371 (define-key calc-mode-map "kK" 'calc-keep-args)
372 (define-key calc-mode-map "kN" 'calc-utpn)
373 (define-key calc-mode-map "kP" 'calc-utpp)
374 (define-key calc-mode-map "kT" 'calc-utpt)
375
376 (define-key calc-mode-map "m" nil)
377 (define-key calc-mode-map "m?" 'calc-m-prefix-help)
378 (define-key calc-mode-map "ma" 'calc-algebraic-mode)
379 (define-key calc-mode-map "md" 'calc-degrees-mode)
380 (define-key calc-mode-map "mf" 'calc-frac-mode)
381 (define-key calc-mode-map "mg" 'calc-get-modes)
382 (define-key calc-mode-map "mh" 'calc-hms-mode)
383 (define-key calc-mode-map "mi" 'calc-infinite-mode)
384 (define-key calc-mode-map "mm" 'calc-save-modes)
385 (define-key calc-mode-map "mp" 'calc-polar-mode)
386 (define-key calc-mode-map "mr" 'calc-radians-mode)
387 (define-key calc-mode-map "ms" 'calc-symbolic-mode)
388 (define-key calc-mode-map "mt" 'calc-total-algebraic-mode)
389 (define-key calc-mode-map "\emt" 'calc-total-algebraic-mode)
390 (define-key calc-mode-map "\em\et" 'calc-total-algebraic-mode)
391 (define-key calc-mode-map "mv" 'calc-matrix-mode)
392 (define-key calc-mode-map "mw" 'calc-working)
393 (define-key calc-mode-map "mx" 'calc-always-load-extensions)
394 (define-key calc-mode-map "mA" 'calc-alg-simplify-mode)
395 (define-key calc-mode-map "mB" 'calc-bin-simplify-mode)
396 (define-key calc-mode-map "mC" 'calc-auto-recompute)
397 (define-key calc-mode-map "mD" 'calc-default-simplify-mode)
398 (define-key calc-mode-map "mE" 'calc-ext-simplify-mode)
399 (define-key calc-mode-map "mF" 'calc-settings-file-name)
400 (define-key calc-mode-map "mM" 'calc-more-recursion-depth)
401 (define-key calc-mode-map "mN" 'calc-num-simplify-mode)
402 (define-key calc-mode-map "mO" 'calc-no-simplify-mode)
403 (define-key calc-mode-map "mR" 'calc-mode-record-mode)
404 (define-key calc-mode-map "mS" 'calc-shift-prefix)
405 (define-key calc-mode-map "mU" 'calc-units-simplify-mode)
406 (define-key calc-mode-map "mX" 'calc-load-everything)
407
408 (define-key calc-mode-map "r" nil)
409 (define-key calc-mode-map "r?" 'calc-r-prefix-help)
410
411 (define-key calc-mode-map "s" nil)
412 (define-key calc-mode-map "s?" 'calc-s-prefix-help)
413 (define-key calc-mode-map "sc" 'calc-copy-variable)
414 (define-key calc-mode-map "sd" 'calc-declare-variable)
415 (define-key calc-mode-map "se" 'calc-edit-variable)
416 (define-key calc-mode-map "si" 'calc-insert-variables)
417 (define-key calc-mode-map "sl" 'calc-let)
418 (define-key calc-mode-map "sm" 'calc-store-map)
419 (define-key calc-mode-map "sn" 'calc-store-neg)
420 (define-key calc-mode-map "sp" 'calc-permanent-variable)
421 (define-key calc-mode-map "sr" 'calc-recall)
422 (define-key calc-mode-map "ss" 'calc-store)
423 (define-key calc-mode-map "st" 'calc-store-into)
424 (define-key calc-mode-map "su" 'calc-unstore)
425 (define-key calc-mode-map "sx" 'calc-store-exchange)
426 (define-key calc-mode-map "sA" 'calc-edit-AlgSimpRules)
427 (define-key calc-mode-map "sD" 'calc-edit-Decls)
428 (define-key calc-mode-map "sE" 'calc-edit-EvalRules)
429 (define-key calc-mode-map "sF" 'calc-edit-FitRules)
430 (define-key calc-mode-map "sG" 'calc-edit-GenCount)
431 (define-key calc-mode-map "sH" 'calc-edit-Holidays)
432 (define-key calc-mode-map "sI" 'calc-edit-IntegLimit)
433 (define-key calc-mode-map "sL" 'calc-edit-LineStyles)
434 (define-key calc-mode-map "sP" 'calc-edit-PointStyles)
435 (define-key calc-mode-map "sR" 'calc-edit-PlotRejects)
436 (define-key calc-mode-map "sS" 'calc-sin)
437 (define-key calc-mode-map "sT" 'calc-edit-TimeZone)
438 (define-key calc-mode-map "sU" 'calc-edit-Units)
439 (define-key calc-mode-map "sX" 'calc-edit-ExtSimpRules)
440 (define-key calc-mode-map "s+" 'calc-store-plus)
441 (define-key calc-mode-map "s-" 'calc-store-minus)
442 (define-key calc-mode-map "s*" 'calc-store-times)
443 (define-key calc-mode-map "s/" 'calc-store-div)
444 (define-key calc-mode-map "s^" 'calc-store-power)
445 (define-key calc-mode-map "s|" 'calc-store-concat)
446 (define-key calc-mode-map "s&" 'calc-store-inv)
447 (define-key calc-mode-map "s[" 'calc-store-decr)
448 (define-key calc-mode-map "s]" 'calc-store-incr)
449 (define-key calc-mode-map "s:" 'calc-assign)
450 (define-key calc-mode-map "s=" 'calc-evalto)
451
452 (define-key calc-mode-map "t" nil)
453 (define-key calc-mode-map "t?" 'calc-t-prefix-help)
454 (define-key calc-mode-map "tb" 'calc-trail-backward)
455 (define-key calc-mode-map "td" 'calc-trail-display)
456 (define-key calc-mode-map "tf" 'calc-trail-forward)
457 (define-key calc-mode-map "th" 'calc-trail-here)
458 (define-key calc-mode-map "ti" 'calc-trail-in)
459 (define-key calc-mode-map "tk" 'calc-trail-kill)
460 (define-key calc-mode-map "tm" 'calc-trail-marker)
461 (define-key calc-mode-map "tn" 'calc-trail-next)
462 (define-key calc-mode-map "to" 'calc-trail-out)
463 (define-key calc-mode-map "tp" 'calc-trail-previous)
464 (define-key calc-mode-map "tr" 'calc-trail-isearch-backward)
465 (define-key calc-mode-map "ts" 'calc-trail-isearch-forward)
466 (define-key calc-mode-map "ty" 'calc-trail-yank)
467 (define-key calc-mode-map "t[" 'calc-trail-first)
468 (define-key calc-mode-map "t]" 'calc-trail-last)
469 (define-key calc-mode-map "t<" 'calc-trail-scroll-left)
470 (define-key calc-mode-map "t>" 'calc-trail-scroll-right)
471 (define-key calc-mode-map "t{" 'calc-trail-backward)
472 (define-key calc-mode-map "t}" 'calc-trail-forward)
473 (define-key calc-mode-map "t." 'calc-full-trail-vectors)
474 (define-key calc-mode-map "tC" 'calc-convert-time-zones)
475 (define-key calc-mode-map "tD" 'calc-date)
476 (define-key calc-mode-map "tI" 'calc-inc-month)
477 (define-key calc-mode-map "tJ" 'calc-julian)
478 (define-key calc-mode-map "tM" 'calc-new-month)
479 (define-key calc-mode-map "tN" 'calc-now)
480 (define-key calc-mode-map "tP" 'calc-date-part)
481 (define-key calc-mode-map "tT" 'calc-tan)
482 (define-key calc-mode-map "tU" 'calc-unix-time)
483 (define-key calc-mode-map "tW" 'calc-new-week)
484 (define-key calc-mode-map "tY" 'calc-new-year)
485 (define-key calc-mode-map "tZ" 'calc-time-zone)
486 (define-key calc-mode-map "t+" 'calc-business-days-plus)
487 (define-key calc-mode-map "t-" 'calc-business-days-minus)
488
489 (define-key calc-mode-map "u" 'nil)
490 (define-key calc-mode-map "u?" 'calc-u-prefix-help)
491 (define-key calc-mode-map "ua" 'calc-autorange-units)
492 (define-key calc-mode-map "ub" 'calc-base-units)
493 (define-key calc-mode-map "uc" 'calc-convert-units)
494 (define-key calc-mode-map "ud" 'calc-define-unit)
495 (define-key calc-mode-map "ue" 'calc-explain-units)
496 (define-key calc-mode-map "ug" 'calc-get-unit-definition)
497 (define-key calc-mode-map "up" 'calc-permanent-units)
498 (define-key calc-mode-map "ur" 'calc-remove-units)
499 (define-key calc-mode-map "us" 'calc-simplify-units)
500 (define-key calc-mode-map "ut" 'calc-convert-temperature)
501 (define-key calc-mode-map "uu" 'calc-undefine-unit)
502 (define-key calc-mode-map "uv" 'calc-enter-units-table)
503 (define-key calc-mode-map "ux" 'calc-extract-units)
504 (define-key calc-mode-map "uV" 'calc-view-units-table)
505 (define-key calc-mode-map "uC" 'calc-vector-covariance)
506 (define-key calc-mode-map "uG" 'calc-vector-geometric-mean)
507 (define-key calc-mode-map "uM" 'calc-vector-mean)
508 (define-key calc-mode-map "uN" 'calc-vector-min)
509 (define-key calc-mode-map "uS" 'calc-vector-sdev)
510 (define-key calc-mode-map "uU" 'calc-undo)
511 (define-key calc-mode-map "uX" 'calc-vector-max)
512 (define-key calc-mode-map "u#" 'calc-vector-count)
513 (define-key calc-mode-map "u+" 'calc-vector-sum)
514 (define-key calc-mode-map "u*" 'calc-vector-product)
515
516 (define-key calc-mode-map "v" 'nil)
517 (define-key calc-mode-map "v?" 'calc-v-prefix-help)
518 (define-key calc-mode-map "va" 'calc-arrange-vector)
519 (define-key calc-mode-map "vb" 'calc-build-vector)
520 (define-key calc-mode-map "vc" 'calc-mcol)
521 (define-key calc-mode-map "vd" 'calc-diag)
522 (define-key calc-mode-map "ve" 'calc-expand-vector)
523 (define-key calc-mode-map "vf" 'calc-vector-find)
524 (define-key calc-mode-map "vh" 'calc-head)
525 (define-key calc-mode-map "vi" 'calc-ident)
526 (define-key calc-mode-map "vk" 'calc-cons)
527 (define-key calc-mode-map "vl" 'calc-vlength)
528 (define-key calc-mode-map "vm" 'calc-mask-vector)
529 (define-key calc-mode-map "vn" 'calc-rnorm)
530 (define-key calc-mode-map "vp" 'calc-pack)
531 (define-key calc-mode-map "vr" 'calc-mrow)
532 (define-key calc-mode-map "vs" 'calc-subvector)
533 (define-key calc-mode-map "vt" 'calc-transpose)
534 (define-key calc-mode-map "vu" 'calc-unpack)
535 (define-key calc-mode-map "vv" 'calc-reverse-vector)
536 (define-key calc-mode-map "vx" 'calc-index)
537 (define-key calc-mode-map "vA" 'calc-apply)
538 (define-key calc-mode-map "vC" 'calc-cross)
539 (define-key calc-mode-map "vD" 'calc-mdet)
540 (define-key calc-mode-map "vE" 'calc-set-enumerate)
541 (define-key calc-mode-map "vF" 'calc-set-floor)
542 (define-key calc-mode-map "vG" 'calc-grade)
543 (define-key calc-mode-map "vH" 'calc-histogram)
544 (define-key calc-mode-map "vI" 'calc-inner-product)
545 (define-key calc-mode-map "vJ" 'calc-conj-transpose)
546 (define-key calc-mode-map "vL" 'calc-mlud)
547 (define-key calc-mode-map "vM" 'calc-map)
548 (define-key calc-mode-map "vN" 'calc-cnorm)
549 (define-key calc-mode-map "vO" 'calc-outer-product)
550 (define-key calc-mode-map "vR" 'calc-reduce)
551 (define-key calc-mode-map "vS" 'calc-sort)
552 (define-key calc-mode-map "vT" 'calc-mtrace)
553 (define-key calc-mode-map "vU" 'calc-accumulate)
554 (define-key calc-mode-map "vV" 'calc-set-union)
555 (define-key calc-mode-map "vX" 'calc-set-xor)
556 (define-key calc-mode-map "v^" 'calc-set-intersect)
557 (define-key calc-mode-map "v-" 'calc-set-difference)
558 (define-key calc-mode-map "v~" 'calc-set-complement)
559 (define-key calc-mode-map "v:" 'calc-set-span)
560 (define-key calc-mode-map "v#" 'calc-set-cardinality)
561 (define-key calc-mode-map "v+" 'calc-remove-duplicates)
562 (define-key calc-mode-map "v&" 'calc-inv)
563 (define-key calc-mode-map "v<" 'calc-matrix-left-justify)
564 (define-key calc-mode-map "v=" 'calc-matrix-center-justify)
565 (define-key calc-mode-map "v>" 'calc-matrix-right-justify)
566 (define-key calc-mode-map "v." 'calc-full-vectors)
567 (define-key calc-mode-map "v/" 'calc-break-vectors)
568 (define-key calc-mode-map "v," 'calc-vector-commas)
569 (define-key calc-mode-map "v[" 'calc-vector-brackets)
570 (define-key calc-mode-map "v]" 'calc-matrix-brackets)
571 (define-key calc-mode-map "v{" 'calc-vector-braces)
572 (define-key calc-mode-map "v}" 'calc-matrix-brackets)
573 (define-key calc-mode-map "v(" 'calc-vector-parens)
574 (define-key calc-mode-map "v)" 'calc-matrix-brackets)
575 ;; We can't rely on the automatic upper->lower conversion because
576 ;; in the global map V is explicitly bound, so we need to bind it
577 ;; explicitly as well :-( --stef
578 (define-key calc-mode-map "V" (lookup-key calc-mode-map "v"))
579
580 (define-key calc-mode-map "z" 'nil)
581 (define-key calc-mode-map "z?" 'calc-z-prefix-help)
582
583 (define-key calc-mode-map "Z" 'nil)
584 (define-key calc-mode-map "Z?" 'calc-shift-Z-prefix-help)
585 (define-key calc-mode-map "ZC" 'calc-user-define-composition)
586 (define-key calc-mode-map "ZD" 'calc-user-define)
587 (define-key calc-mode-map "ZE" 'calc-user-define-edit)
588 (define-key calc-mode-map "ZF" 'calc-user-define-formula)
589 (define-key calc-mode-map "ZG" 'calc-get-user-defn)
590 (define-key calc-mode-map "ZI" 'calc-user-define-invocation)
591 (define-key calc-mode-map "ZK" 'calc-user-define-kbd-macro)
592 (define-key calc-mode-map "ZP" 'calc-user-define-permanent)
593 (define-key calc-mode-map "ZS" 'calc-edit-user-syntax)
594 (define-key calc-mode-map "ZT" 'calc-timing)
595 (define-key calc-mode-map "ZU" 'calc-user-undefine)
596 (define-key calc-mode-map "Z[" 'calc-kbd-if)
597 (define-key calc-mode-map "Z:" 'calc-kbd-else)
598 (define-key calc-mode-map "Z|" 'calc-kbd-else-if)
599 (define-key calc-mode-map "Z]" 'calc-kbd-end-if)
600 (define-key calc-mode-map "Z<" 'calc-kbd-repeat)
601 (define-key calc-mode-map "Z>" 'calc-kbd-end-repeat)
602 (define-key calc-mode-map "Z(" 'calc-kbd-for)
603 (define-key calc-mode-map "Z)" 'calc-kbd-end-for)
604 (define-key calc-mode-map "Z{" 'calc-kbd-loop)
605 (define-key calc-mode-map "Z}" 'calc-kbd-end-loop)
606 (define-key calc-mode-map "Z/" 'calc-kbd-break)
607 (define-key calc-mode-map "Z`" 'calc-kbd-push)
608 (define-key calc-mode-map "Z'" 'calc-kbd-pop)
609 (define-key calc-mode-map "Z=" 'calc-kbd-report)
610 (define-key calc-mode-map "Z#" 'calc-kbd-query)
611
612 (calc-init-prefixes)
613
614 (mapcar (function
615 (lambda (x)
616 (define-key calc-mode-map (format "c%c" x) 'calc-clean-num)
617 (define-key calc-mode-map (format "j%c" x) 'calc-select-part)
618 (define-key calc-mode-map (format "r%c" x) 'calc-recall-quick)
619 (define-key calc-mode-map (format "s%c" x) 'calc-store-quick)
620 (define-key calc-mode-map (format "t%c" x) 'calc-store-into-quick)
621 (define-key calc-mode-map (format "u%c" x) 'calc-quick-units)))
622 "0123456789")
623
624 (let ((i ?A))
625 (while (<= i ?z)
626 (if (eq (car-safe (aref (nth 1 calc-mode-map) i)) 'keymap)
627 (aset (nth 1 calc-mode-map) i
628 (cons 'keymap (cons (cons ?\e (aref (nth 1 calc-mode-map) i))
629 (cdr (aref (nth 1 calc-mode-map) i))))))
630 (setq i (1+ i))))
631
632 (setq calc-alg-map (copy-keymap calc-mode-map)
633 calc-alg-esc-map (copy-keymap esc-map))
634 (let ((i 32))
635 (while (< i 127)
636 (or (memq i '(?' ?` ?= ??))
637 (aset (nth 1 calc-alg-map) i 'calc-auto-algebraic-entry))
638 (or (memq i '(?# ?x ?0 ?1 ?2 ?3 ?4 ?5 ?6 ?7 ?8 ?9))
639 (aset (nth 1 calc-alg-esc-map) i (aref (nth 1 calc-mode-map) i)))
640 (setq i (1+ i))))
641 (define-key calc-alg-map "\e" calc-alg-esc-map)
642 (define-key calc-alg-map "\e\t" 'calc-roll-up)
643 (define-key calc-alg-map "\e\C-m" 'calc-last-args-stub)
644 (define-key calc-alg-map "\e\177" 'calc-pop-above)
645
646 ;;;; (Autoloads here)
647 (mapcar (function (lambda (x)
648 (mapcar (function (lambda (func)
649 (autoload func (car x)))) (cdr x))))
650 '(
651
652 ("calc-alg" calc-has-rules math-defsimplify
653 calc-modify-simplify-mode calcFunc-collect calcFunc-esimplify
654 calcFunc-islin calcFunc-islinnt calcFunc-lin calcFunc-linnt
655 calcFunc-simplify calcFunc-subst math-beforep
656 math-build-polynomial-expr math-expand-formula math-expr-contains
657 math-expr-contains-count math-expr-depends math-expr-height
658 math-expr-subst math-expr-weight math-integer-plus math-is-linear
659 math-is-multiple math-is-polynomial math-linear-in math-multiple-of
660 math-poly-depends math-poly-mix math-poly-mul
661 math-poly-simplify math-poly-zerop math-polynomial-base
662 math-polynomial-p math-recompile-eval-rules math-simplify
663 math-simplify-exp math-simplify-extended math-simplify-sqrt
664 math-to-simple-fraction)
665
666 ("calcalg2" calcFunc-asum calcFunc-deriv
667 calcFunc-ffinv calcFunc-finv calcFunc-fsolve calcFunc-gpoly
668 calcFunc-integ calcFunc-poly calcFunc-prod calcFunc-roots
669 calcFunc-solve calcFunc-sum calcFunc-table calcFunc-taylor
670 calcFunc-tderiv math-expr-calls math-integral-q02 math-integral-q12
671 math-integral-rational-funcs math-lcm-denoms math-looks-evenp
672 math-poly-all-roots math-prod-rec math-reject-solution math-solve-eqn
673 math-solve-for math-sum-rec math-try-integral)
674
675 ("calcalg3" calcFunc-efit calcFunc-fit
676 calcFunc-fitdummy calcFunc-fitparam calcFunc-fitvar
677 calcFunc-hasfitparams calcFunc-hasfitvars calcFunc-maximize
678 calcFunc-minimize calcFunc-ninteg calcFunc-polint calcFunc-ratint
679 calcFunc-root calcFunc-wmaximize calcFunc-wminimize calcFunc-wroot
680 calcFunc-xfit math-find-minimum math-find-root math-ninteg-evaluate
681 math-ninteg-midpoint math-ninteg-romberg math-poly-interp)
682
683 ("calc-arith" calcFunc-abs calcFunc-abssqr
684 calcFunc-add calcFunc-ceil calcFunc-decr calcFunc-deven calcFunc-dimag
685 calcFunc-dint calcFunc-div calcFunc-dnatnum calcFunc-dneg
686 calcFunc-dnonneg calcFunc-dnonzero calcFunc-dnumint calcFunc-dodd
687 calcFunc-dpos calcFunc-drange calcFunc-drat calcFunc-dreal
688 calcFunc-dscalar calcFunc-fceil calcFunc-ffloor calcFunc-float
689 calcFunc-fround calcFunc-frounde calcFunc-froundu calcFunc-ftrunc
690 calcFunc-idiv calcFunc-incr calcFunc-mant calcFunc-max calcFunc-min
691 calcFunc-mod calcFunc-mul calcFunc-neg calcFunc-percent calcFunc-pow
692 calcFunc-relch calcFunc-round calcFunc-rounde calcFunc-roundu
693 calcFunc-scf calcFunc-sub calcFunc-xpon math-abs math-abs-approx
694 math-add-objects-fancy math-add-or-sub math-add-symb-fancy
695 math-ceiling math-combine-prod math-combine-sum math-div-by-zero
696 math-div-objects-fancy math-div-symb-fancy math-div-zero
697 math-float-fancy math-floor-fancy math-floor-special math-guess-if-neg
698 math-intv-constp math-known-evenp math-known-imagp math-known-integerp
699 math-known-matrixp math-known-negp math-known-nonnegp
700 math-known-nonposp math-known-nonzerop math-known-num-integerp
701 math-known-oddp math-known-posp math-known-realp math-known-scalarp
702 math-max math-min math-mod-fancy math-mul-float math-mul-objects-fancy
703 math-mul-or-div math-mul-symb-fancy math-mul-zero math-neg-fancy
704 math-neg-float math-okay-neg math-possible-signs math-possible-types
705 math-pow-fancy math-pow-mod math-pow-of-zero math-pow-zero
706 math-quarter-integer math-round math-setup-declarations math-sqr
707 math-sqr-float math-trunc-fancy math-trunc-special)
708
709 ("calc-bin" calcFunc-and calcFunc-ash
710 calcFunc-clip calcFunc-diff calcFunc-lsh calcFunc-not calcFunc-or
711 calcFunc-rash calcFunc-rot calcFunc-rsh calcFunc-xor math-clip
712 math-compute-max-digits math-convert-radix-digits math-float-parts
713 math-format-bignum-binary math-format-bignum-hex
714 math-format-bignum-octal math-format-bignum-radix math-format-binary
715 math-format-radix math-format-radix-float math-integer-log2
716 math-power-of-2 math-radix-float-power)
717
718 ("calc-comb" calc-report-prime-test
719 calcFunc-choose calcFunc-dfact calcFunc-egcd calcFunc-fact
720 calcFunc-gcd calcFunc-lcm calcFunc-moebius calcFunc-nextprime
721 calcFunc-perm calcFunc-prevprime calcFunc-prfac calcFunc-prime
722 calcFunc-random calcFunc-shuffle calcFunc-stir1 calcFunc-stir2
723 calcFunc-totient math-init-random-base math-member math-prime-test
724 math-random-base)
725
726 ("calccomp" calcFunc-cascent calcFunc-cdescent
727 calcFunc-cheight calcFunc-cwidth math-comp-ascent math-comp-descent
728 math-comp-height math-comp-width math-compose-expr
729 math-composition-to-string math-stack-value-offset-fancy
730 math-vector-is-string math-vector-to-string)
731
732 ("calc-cplx" calcFunc-arg calcFunc-conj
733 calcFunc-im calcFunc-polar calcFunc-re calcFunc-rect math-complex
734 math-fix-circular math-imaginary math-imaginary-i math-normalize-polar
735 math-polar math-want-polar)
736
737 ("calc-embed" calc-do-embedded
738 calc-do-embedded-activate calc-embedded-evaluate-expr
739 calc-embedded-modes-change calc-embedded-var-change)
740
741 ("calc-fin" calc-to-percentage calcFunc-ddb
742 calcFunc-fv calcFunc-fvb calcFunc-fvl calcFunc-irr calcFunc-irrb
743 calcFunc-nper calcFunc-nperb calcFunc-nperl calcFunc-npv calcFunc-npvb
744 calcFunc-pmt calcFunc-pmtb calcFunc-pv calcFunc-pvb calcFunc-pvl
745 calcFunc-rate calcFunc-rateb calcFunc-ratel calcFunc-sln calcFunc-syd)
746
747 ("calc-forms" calcFunc-badd calcFunc-bsub
748 calcFunc-date calcFunc-day calcFunc-dsadj calcFunc-hms
749 calcFunc-holiday calcFunc-hour calcFunc-incmonth calcFunc-incyear
750 calcFunc-intv calcFunc-julian calcFunc-makemod calcFunc-minute
751 calcFunc-month calcFunc-newmonth calcFunc-newweek calcFunc-newyear
752 calcFunc-now calcFunc-pwday calcFunc-sdev calcFunc-second
753 calcFunc-time calcFunc-tzconv calcFunc-tzone calcFunc-unixtime
754 calcFunc-weekday calcFunc-year calcFunc-yearday math-combine-intervals
755 math-date-parts math-date-to-dt math-div-mod math-dt-to-date
756 math-format-date math-from-business-day math-from-hms math-make-intv
757 math-make-mod math-make-sdev math-mod-intv math-normalize-hms
758 math-normalize-mod math-parse-date math-read-angle-brackets
759 math-setup-add-holidays math-setup-holidays math-setup-year-holidays
760 math-sort-intv math-to-business-day math-to-hms)
761
762 ("calc-frac" calc-add-fractions
763 calc-div-fractions calc-mul-fractions calcFunc-fdiv calcFunc-frac
764 math-make-frac)
765
766 ("calc-funcs" calc-prob-dist calcFunc-bern
767 calcFunc-besJ calcFunc-besY calcFunc-beta calcFunc-betaB
768 calcFunc-betaI calcFunc-erf calcFunc-erfc calcFunc-euler
769 calcFunc-gamma calcFunc-gammaG calcFunc-gammaP calcFunc-gammaQ
770 calcFunc-gammag calcFunc-ltpb calcFunc-ltpc calcFunc-ltpf
771 calcFunc-ltpn calcFunc-ltpp calcFunc-ltpt calcFunc-utpb calcFunc-utpc
772 calcFunc-utpf calcFunc-utpn calcFunc-utpp calcFunc-utpt
773 math-bernoulli-number math-gammap1-raw)
774
775 ("calc-graph" calc-graph-show-tty)
776
777 ("calc-incom" calc-digit-dots)
778
779 ("calc-keypd" calc-do-keypad
780 calc-keypad-x-left-click calc-keypad-x-middle-click
781 calc-keypad-x-right-click)
782
783 ("calc-lang" calc-set-language
784 math-read-big-balance math-read-big-rec)
785
786 ("calc-map" calc-get-operator calcFunc-accum
787 calcFunc-afixp calcFunc-anest calcFunc-apply calcFunc-call
788 calcFunc-fixp calcFunc-inner calcFunc-map calcFunc-mapa calcFunc-mapc
789 calcFunc-mapd calcFunc-mapeq calcFunc-mapeqp calcFunc-mapeqr
790 calcFunc-mapr calcFunc-nest calcFunc-outer calcFunc-raccum
791 calcFunc-reduce calcFunc-reducea calcFunc-reducec calcFunc-reduced
792 calcFunc-reducer calcFunc-rreduce calcFunc-rreducea calcFunc-rreducec
793 calcFunc-rreduced calcFunc-rreducer math-build-call
794 math-calcFunc-to-var math-multi-subst math-multi-subst-rec
795 math-var-to-calcFunc)
796
797 ("calc-mtx" calcFunc-det calcFunc-lud calcFunc-tr
798 math-col-matrix math-lud-solve math-matrix-inv-raw math-matrix-lud
799 math-mul-mat-vec math-mul-mats math-row-matrix)
800
801 ("calc-math" calcFunc-alog calcFunc-arccos
802 calcFunc-arccosh calcFunc-arcsin calcFunc-arcsincos calcFunc-arcsinh
803 calcFunc-arctan calcFunc-arctan2 calcFunc-arctanh calcFunc-cos
804 calcFunc-cosh calcFunc-deg calcFunc-exp calcFunc-exp10 calcFunc-expm1
805 calcFunc-hypot calcFunc-ilog calcFunc-isqrt calcFunc-ln calcFunc-lnp1
806 calcFunc-log calcFunc-log10 calcFunc-nroot calcFunc-rad calcFunc-sin
807 calcFunc-sincos calcFunc-sinh calcFunc-sqr calcFunc-sqrt calcFunc-tan
808 calcFunc-tanh math-arccos-raw math-arcsin-raw math-arctan-raw
809 math-arctan2-raw math-cos-raw math-exp-minus-1-raw math-exp-raw
810 math-from-radians math-from-radians-2 math-hypot math-infinite-dir
811 math-isqrt-small math-ln-raw math-nearly-equal math-nearly-equal-float
812 math-nearly-zerop math-nearly-zerop-float math-nth-root
813 math-sin-cos-raw math-sin-raw math-sqrt math-sqrt-float math-sqrt-raw
814 math-tan-raw math-to-radians math-to-radians-2)
815
816 ("calc-mode" math-get-modes-vec)
817
818 ("calc-poly" calcFunc-apart calcFunc-expand
819 calcFunc-expandpow calcFunc-factor calcFunc-factors calcFunc-nrat
820 calcFunc-pcont calcFunc-pdeg calcFunc-pdiv calcFunc-pdivide
821 calcFunc-pdivrem calcFunc-pgcd calcFunc-plead calcFunc-pprim
822 calcFunc-prem math-accum-factors math-atomic-factorp
823 math-div-poly-const math-div-thru math-expand-power math-expand-term
824 math-factor-contains math-factor-expr math-factor-expr-part
825 math-factor-expr-try math-factor-finish math-factor-poly-coefs
826 math-factor-protect math-mul-thru math-padded-polynomial
827 math-partial-fractions math-poly-degree math-poly-deriv-coefs
828 math-poly-gcd-frac-list math-poly-modulus-rec math-ratpoly-p
829 math-to-ratpoly math-to-ratpoly-rec)
830
831 ("calc-prog" calc-default-formula-arglist
832 calc-execute-kbd-macro calc-finish-user-syntax-edit
833 calc-fix-token-name calc-fix-user-formula calc-read-parse-table
834 calc-read-parse-table-part calc-subsetp calc-write-parse-table
835 calc-write-parse-table-part calcFunc-constant calcFunc-eq calcFunc-geq
836 calcFunc-gt calcFunc-if calcFunc-in calcFunc-integer calcFunc-istrue
837 calcFunc-land calcFunc-leq calcFunc-lnot calcFunc-lor calcFunc-lt
838 calcFunc-negative calcFunc-neq calcFunc-nonvar calcFunc-real
839 calcFunc-refers calcFunc-rmeq calcFunc-typeof calcFunc-variable
840 math-body-refers-to math-break math-composite-inequalities
841 math-do-defmath math-handle-for math-handle-foreach
842 math-normalize-logical-op math-return)
843
844 ("calc-rewr" calcFunc-match calcFunc-matches
845 calcFunc-matchnot calcFunc-rewrite calcFunc-vmatches
846 math-apply-rewrites math-compile-patterns math-compile-rewrites
847 math-flatten-lands math-match-patterns math-rewrite
848 math-rewrite-heads)
849
850 ("calc-rules" calc-CommuteRules calc-DistribRules calc-FactorRules
851 calc-FitRules calc-IntegAfterRules calc-InvertRules calc-JumpRules
852 calc-MergeRules calc-NegateRules
853 calc-compile-rule-set)
854
855 ("calc-sel" calc-auto-selection
856 calc-delete-selection calc-encase-atoms calc-find-assoc-parent-formula
857 calc-find-parent-formula calc-find-sub-formula calc-prepare-selection
858 calc-preserve-point calc-replace-selections calc-replace-sub-formula
859 calc-roll-down-with-selections calc-roll-up-with-selections
860 calc-sel-error)
861
862 ("calc-stat" calc-vector-op calcFunc-agmean
863 calcFunc-vcorr calcFunc-vcount calcFunc-vcov calcFunc-vflat
864 calcFunc-vgmean calcFunc-vhmean calcFunc-vmax calcFunc-vmean
865 calcFunc-vmeane calcFunc-vmedian calcFunc-vmin calcFunc-vpcov
866 calcFunc-vprod calcFunc-vpsdev calcFunc-vpvar calcFunc-vsdev
867 calcFunc-vsum calcFunc-vvar math-flatten-many-vecs)
868
869 ("calc-store" calc-read-var-name
870 calc-store-value calc-var-name)
871
872 ("calc-stuff" calc-explain-why calcFunc-clean
873 calcFunc-pclean calcFunc-pfloat calcFunc-pfrac)
874
875 ("calc-units" calcFunc-usimplify
876 math-build-units-table math-build-units-table-buffer
877 math-check-unit-name math-convert-temperature math-convert-units
878 math-extract-units math-remove-units math-simplify-units
879 math-single-units-in-expr-p math-to-standard-units
880 math-units-in-expr-p)
881
882 ("calc-vec" calcFunc-append calcFunc-appendrev
883 calcFunc-arrange calcFunc-cnorm calcFunc-cons calcFunc-cross
884 calcFunc-ctrn calcFunc-cvec calcFunc-diag calcFunc-find
885 calcFunc-getdiag calcFunc-grade calcFunc-head calcFunc-histogram
886 calcFunc-idn calcFunc-index calcFunc-mcol calcFunc-mdims
887 calcFunc-mrcol calcFunc-mrow calcFunc-mrrow calcFunc-pack
888 calcFunc-rcons calcFunc-rdup calcFunc-rev calcFunc-rgrade
889 calcFunc-rhead calcFunc-rnorm calcFunc-rsort calcFunc-rsubvec
890 calcFunc-rtail calcFunc-sort calcFunc-subscr calcFunc-subvec
891 calcFunc-tail calcFunc-trn calcFunc-unpack calcFunc-unpackt
892 calcFunc-vcard calcFunc-vcompl calcFunc-vconcat calcFunc-vconcatrev
893 calcFunc-vdiff calcFunc-vec calcFunc-venum calcFunc-vexp
894 calcFunc-vfloor calcFunc-vint calcFunc-vlen calcFunc-vmask
895 calcFunc-vpack calcFunc-vspan calcFunc-vunion calcFunc-vunpack
896 calcFunc-vxor math-check-for-commas math-clean-set math-copy-matrix
897 math-dimension-error math-dot-product math-flatten-vector math-map-vec
898 math-map-vec-2 math-mat-col math-mimic-ident math-prepare-set
899 math-read-brackets math-reduce-cols math-reduce-vec math-transpose)
900
901 ("calc-yank" calc-alg-edit calc-clean-newlines
902 calc-do-grab-rectangle calc-do-grab-region calc-finish-stack-edit
903 calc-force-refresh calc-locate-cursor-element calc-show-edit-buffer)
904
905 ))
906
907 (mapcar (function (lambda (x)
908 (mapcar (function (lambda (cmd)
909 (autoload cmd (car x) nil t))) (cdr x))))
910 '(
911
912 ("calc-alg" calc-alg-evaluate calc-apart calc-collect calc-expand
913 calc-expand-formula calc-factor calc-normalize-rat calc-poly-div
914 calc-poly-div-rem calc-poly-gcd calc-poly-rem calc-simplify
915 calc-simplify-extended calc-substitute)
916
917 ("calcalg2" calc-alt-summation calc-derivative
918 calc-dump-integral-cache calc-integral calc-num-integral
919 calc-poly-roots calc-product calc-solve-for calc-summation
920 calc-tabulate calc-taylor)
921
922 ("calcalg3" calc-curve-fit calc-find-maximum calc-find-minimum
923 calc-find-root calc-poly-interp)
924
925 ("calc-arith" calc-abs calc-abssqr calc-ceiling calc-decrement
926 calc-floor calc-idiv calc-increment calc-mant-part calc-max calc-min
927 calc-round calc-scale-float calc-sign calc-trunc calc-xpon-part)
928
929 ("calc-bin" calc-and calc-binary-radix calc-clip calc-decimal-radix
930 calc-diff calc-hex-radix calc-leading-zeros calc-lshift-arith
931 calc-lshift-binary calc-not calc-octal-radix calc-or calc-radix
932 calc-rotate-binary calc-rshift-arith calc-rshift-binary calc-word-size
933 calc-xor)
934
935 ("calc-comb" calc-choose calc-double-factorial calc-extended-gcd
936 calc-factorial calc-gamma calc-gcd calc-lcm calc-moebius
937 calc-next-prime calc-perm calc-prev-prime calc-prime-factors
938 calc-prime-test calc-random calc-random-again calc-rrandom
939 calc-shuffle calc-totient)
940
941 ("calc-cplx" calc-argument calc-complex-notation calc-i-notation
942 calc-im calc-j-notation calc-polar calc-polar-mode calc-re)
943
944 ("calc-embed" calc-embedded-copy-formula-as-kill
945 calc-embedded-duplicate calc-embedded-edit calc-embedded-forget
946 calc-embedded-kill-formula calc-embedded-mark-formula
947 calc-embedded-new-formula calc-embedded-next calc-embedded-previous
948 calc-embedded-select calc-embedded-update-formula calc-embedded-word
949 calc-find-globals calc-show-plain)
950
951 ("calc-fin" calc-convert-percent calc-fin-ddb calc-fin-fv
952 calc-fin-irr calc-fin-nper calc-fin-npv calc-fin-pmt calc-fin-pv
953 calc-fin-rate calc-fin-sln calc-fin-syd calc-percent-change)
954
955 ("calc-forms" calc-business-days-minus calc-business-days-plus
956 calc-convert-time-zones calc-date calc-date-notation calc-date-part
957 calc-from-hms calc-hms-mode calc-hms-notation calc-inc-month
958 calc-julian calc-new-month calc-new-week calc-new-year calc-now
959 calc-time calc-time-zone calc-to-hms calc-unix-time)
960
961 ("calc-frac" calc-fdiv calc-frac-mode calc-fraction
962 calc-over-notation calc-slash-notation)
963
964 ("calc-funcs" calc-bernoulli-number calc-bessel-J calc-bessel-Y
965 calc-beta calc-erf calc-erfc calc-euler-number calc-inc-beta
966 calc-inc-gamma calc-stirling-number calc-utpb calc-utpc calc-utpf
967 calc-utpn calc-utpp calc-utpt)
968
969 ("calc-graph" calc-graph-add calc-graph-add-3d calc-graph-border
970 calc-graph-clear calc-graph-command calc-graph-delete
971 calc-graph-device calc-graph-display calc-graph-fast
972 calc-graph-fast-3d calc-graph-geometry calc-graph-grid
973 calc-graph-header calc-graph-hide calc-graph-juggle calc-graph-key
974 calc-graph-kill calc-graph-line-style calc-graph-log-x
975 calc-graph-log-y calc-graph-log-z calc-graph-name
976 calc-graph-num-points calc-graph-output calc-graph-plot
977 calc-graph-point-style calc-graph-print calc-graph-quit
978 calc-graph-range-x calc-graph-range-y calc-graph-range-z
979 calc-graph-show-dumb calc-graph-title-x calc-graph-title-y
980 calc-graph-title-z calc-graph-view-commands calc-graph-view-trail
981 calc-graph-zero-x calc-graph-zero-y)
982
983 ("calc-help" calc-a-prefix-help calc-b-prefix-help calc-c-prefix-help
984 calc-d-prefix-help calc-describe-function calc-describe-key
985 calc-describe-key-briefly calc-describe-variable calc-f-prefix-help
986 calc-full-help calc-g-prefix-help calc-help-prefix
987 calc-hyperbolic-prefix-help calc-inv-hyp-prefix-help
988 calc-inverse-prefix-help calc-j-prefix-help calc-k-prefix-help
989 calc-m-prefix-help calc-r-prefix-help calc-s-prefix-help
990 calc-t-prefix-help calc-u-prefix-help calc-v-prefix-help)
991
992 ("calc-incom" calc-begin-complex calc-begin-vector calc-comma
993 calc-dots calc-end-complex calc-end-vector calc-semi)
994
995 ("calc-keypd" calc-keypad-menu calc-keypad-menu-back
996 calc-keypad-press)
997
998 ("calc-lang" calc-big-language calc-c-language calc-eqn-language
999 calc-flat-language calc-fortran-language calc-maple-language
1000 calc-mathematica-language calc-normal-language calc-pascal-language
1001 calc-tex-language calc-unformatted-language)
1002
1003 ("calc-map" calc-accumulate calc-apply calc-inner-product calc-map
1004 calc-map-equation calc-map-stack calc-outer-product calc-reduce)
1005
1006 ("calc-mtx" calc-mdet calc-mlud calc-mtrace)
1007
1008 ("calc-math" calc-arccos calc-arccosh calc-arcsin calc-arcsinh
1009 calc-arctan calc-arctan2 calc-arctanh calc-conj calc-cos calc-cosh
1010 calc-degrees-mode calc-exp calc-expm1 calc-hypot calc-ilog
1011 calc-imaginary calc-isqrt calc-ln calc-lnp1 calc-log calc-log10
1012 calc-pi calc-radians-mode calc-sin calc-sincos calc-sinh calc-sqrt
1013 calc-tan calc-tanh calc-to-degrees calc-to-radians)
1014
1015 ("calc-mode" calc-alg-simplify-mode calc-algebraic-mode
1016 calc-always-load-extensions calc-auto-recompute calc-auto-why
1017 calc-bin-simplify-mode calc-break-vectors calc-center-justify
1018 calc-default-simplify-mode calc-display-raw calc-eng-notation
1019 calc-ext-simplify-mode calc-fix-notation calc-full-trail-vectors
1020 calc-full-vectors calc-get-modes calc-group-char calc-group-digits
1021 calc-infinite-mode calc-left-justify calc-left-label
1022 calc-line-breaking calc-line-numbering calc-matrix-brackets
1023 calc-matrix-center-justify calc-matrix-left-justify calc-matrix-mode
1024 calc-matrix-right-justify calc-mode-record-mode calc-no-simplify-mode
1025 calc-normal-notation calc-num-simplify-mode calc-point-char
1026 calc-right-justify calc-right-label calc-save-modes calc-sci-notation
1027 calc-settings-file-name calc-shift-prefix calc-symbolic-mode
1028 calc-total-algebraic-mode calc-truncate-down calc-truncate-stack
1029 calc-truncate-up calc-units-simplify-mode calc-vector-braces
1030 calc-vector-brackets calc-vector-commas calc-vector-parens
1031 calc-working)
1032
1033 ("calc-prog" calc-call-last-kbd-macro calc-edit-user-syntax
1034 calc-equal-to calc-get-user-defn calc-greater-equal calc-greater-than
1035 calc-in-set calc-kbd-break calc-kbd-else calc-kbd-else-if
1036 calc-kbd-end-for calc-kbd-end-if calc-kbd-end-loop calc-kbd-end-repeat
1037 calc-kbd-for calc-kbd-if calc-kbd-loop calc-kbd-pop calc-kbd-push
1038 calc-kbd-query calc-kbd-repeat calc-kbd-report calc-less-equal
1039 calc-less-than calc-logical-and calc-logical-if calc-logical-not
1040 calc-logical-or calc-not-equal-to calc-pass-errors calc-remove-equal
1041 calc-timing calc-user-define calc-user-define-composition
1042 calc-user-define-edit calc-user-define-formula
1043 calc-user-define-invocation calc-user-define-kbd-macro
1044 calc-user-define-permanent calc-user-undefine)
1045
1046 ("calc-rewr" calc-match calc-rewrite calc-rewrite-selection)
1047
1048 ("calc-sel" calc-break-selections calc-clear-selections
1049 calc-copy-selection calc-del-selection calc-edit-selection
1050 calc-enable-selections calc-enter-selection calc-sel-add-both-sides
1051 calc-sel-div-both-sides calc-sel-evaluate calc-sel-expand-formula
1052 calc-sel-mult-both-sides calc-sel-sub-both-sides
1053 calc-select-additional calc-select-here calc-select-here-maybe
1054 calc-select-less calc-select-more calc-select-next calc-select-once
1055 calc-select-once-maybe calc-select-part calc-select-previous
1056 calc-show-selections calc-unselect)
1057
1058 ("calcsel2" calc-commute-left calc-commute-right calc-sel-commute
1059 calc-sel-distribute calc-sel-invert calc-sel-isolate
1060 calc-sel-jump-equals calc-sel-merge calc-sel-negate calc-sel-unpack)
1061
1062 ("calc-stat" calc-vector-correlation calc-vector-count
1063 calc-vector-covariance calc-vector-geometric-mean
1064 calc-vector-harmonic-mean calc-vector-max calc-vector-mean
1065 calc-vector-mean-error calc-vector-median calc-vector-min
1066 calc-vector-pop-covariance calc-vector-pop-sdev
1067 calc-vector-pop-variance calc-vector-product calc-vector-sdev
1068 calc-vector-sum calc-vector-variance)
1069
1070 ("calc-store" calc-assign calc-copy-variable calc-declare-variable
1071 calc-edit-AlgSimpRules calc-edit-Decls calc-edit-EvalRules
1072 calc-edit-ExtSimpRules calc-edit-FitRules calc-edit-GenCount
1073 calc-edit-Holidays calc-edit-IntegLimit calc-edit-LineStyles
1074 calc-edit-PlotRejects calc-edit-PointStyles calc-edit-TimeZone
1075 calc-edit-Units calc-edit-variable calc-evalto calc-insert-variables
1076 calc-let calc-permanent-variable calc-recall calc-recall-quick
1077 calc-store calc-store-concat calc-store-decr calc-store-div
1078 calc-store-exchange calc-store-incr calc-store-into
1079 calc-store-into-quick calc-store-inv calc-store-map calc-store-minus
1080 calc-store-neg calc-store-plus calc-store-power calc-store-quick
1081 calc-store-times calc-subscript calc-unstore)
1082
1083 ("calc-stuff" calc-clean calc-clean-num calc-flush-caches
1084 calc-less-recursion-depth calc-more-recursion-depth calc-num-prefix
1085 calc-version calc-why)
1086
1087 ("calc-trail" calc-trail-backward calc-trail-first calc-trail-forward
1088 calc-trail-in calc-trail-isearch-backward calc-trail-isearch-forward
1089 calc-trail-kill calc-trail-last calc-trail-marker calc-trail-next
1090 calc-trail-out calc-trail-previous calc-trail-scroll-left
1091 calc-trail-scroll-right calc-trail-yank)
1092
1093 ("calc-undo" calc-last-args calc-redo calc-undo)
1094
1095 ("calc-units" calc-autorange-units calc-base-units
1096 calc-convert-temperature calc-convert-units calc-define-unit
1097 calc-enter-units-table calc-explain-units calc-extract-units
1098 calc-get-unit-definition calc-permanent-units calc-quick-units
1099 calc-remove-units calc-simplify-units calc-undefine-unit
1100 calc-view-units-table)
1101
1102 ("calc-vec" calc-arrange-vector calc-build-vector calc-cnorm
1103 calc-conj-transpose calc-cons calc-cross calc-diag
1104 calc-display-strings calc-expand-vector calc-grade calc-head
1105 calc-histogram calc-ident calc-index calc-mask-vector calc-mcol
1106 calc-mrow calc-pack calc-pack-bits calc-remove-duplicates
1107 calc-reverse-vector calc-rnorm calc-set-cardinality
1108 calc-set-complement calc-set-difference calc-set-enumerate
1109 calc-set-floor calc-set-intersect calc-set-span calc-set-union
1110 calc-set-xor calc-sort calc-subvector calc-tail calc-transpose
1111 calc-unpack calc-unpack-bits calc-vector-find calc-vlength)
1112
1113 ("calc-yank" calc-copy-as-kill calc-copy-region-as-kill
1114 calc-copy-to-buffer calc-edit calc-edit-cancel calc-edit-mode
1115 calc-kill calc-kill-region calc-yank))))
1116
1117 (defun calc-init-prefixes ()
1118 (if calc-shift-prefix
1119 (progn
1120 (define-key calc-mode-map "A" (lookup-key calc-mode-map "a"))
1121 (define-key calc-mode-map "B" (lookup-key calc-mode-map "b"))
1122 (define-key calc-mode-map "C" (lookup-key calc-mode-map "c"))
1123 (define-key calc-mode-map "D" (lookup-key calc-mode-map "d"))
1124 (define-key calc-mode-map "F" (lookup-key calc-mode-map "f"))
1125 (define-key calc-mode-map "G" (lookup-key calc-mode-map "g"))
1126 (define-key calc-mode-map "J" (lookup-key calc-mode-map "j"))
1127 (define-key calc-mode-map "K" (lookup-key calc-mode-map "k"))
1128 (define-key calc-mode-map "M" (lookup-key calc-mode-map "m"))
1129 (define-key calc-mode-map "S" (lookup-key calc-mode-map "s"))
1130 (define-key calc-mode-map "T" (lookup-key calc-mode-map "t"))
1131 (define-key calc-mode-map "U" (lookup-key calc-mode-map "u")))
1132 (define-key calc-mode-map "A" 'calc-abs)
1133 (define-key calc-mode-map "B" 'calc-log)
1134 (define-key calc-mode-map "C" 'calc-cos)
1135 (define-key calc-mode-map "D" 'calc-redo)
1136 (define-key calc-mode-map "F" 'calc-floor)
1137 (define-key calc-mode-map "G" 'calc-argument)
1138 (define-key calc-mode-map "J" 'calc-conj)
1139 (define-key calc-mode-map "K" 'calc-keep-args)
1140 (define-key calc-mode-map "M" 'calc-more-recursion-depth)
1141 (define-key calc-mode-map "S" 'calc-sin)
1142 (define-key calc-mode-map "T" 'calc-tan)
1143 (define-key calc-mode-map "U" 'calc-undo)))
1144
1145 (calc-init-extensions)
1146
1147
1148
1149
1150 ;;;; Miscellaneous.
1151
1152 ;; calc-command-flags is declared in calc.el
1153 (defvar calc-command-flags)
1154
1155 (defun calc-clear-command-flag (f)
1156 (setq calc-command-flags (delq f calc-command-flags)))
1157
1158
1159 (defun calc-record-message (tag &rest args)
1160 (let ((msg (apply 'format args)))
1161 (message "%s" msg)
1162 (calc-record msg tag))
1163 (calc-clear-command-flag 'clear-message))
1164
1165
1166 (defun calc-normalize-fancy (val)
1167 (let ((simp (if (consp calc-simplify-mode)
1168 (car calc-simplify-mode)
1169 calc-simplify-mode)))
1170 (cond ((eq simp 'binary)
1171 (let ((s (math-normalize val)))
1172 (if (math-realp s)
1173 (math-clip (math-round s))
1174 s)))
1175 ((eq simp 'alg)
1176 (math-simplify val))
1177 ((eq simp 'ext)
1178 (math-simplify-extended val))
1179 ((eq simp 'units)
1180 (math-simplify-units val))
1181 (t ; nil, none, num
1182 (math-normalize val)))))
1183
1184
1185
1186 (if (boundp 'calc-help-map)
1187 nil
1188 (setq calc-help-map (make-keymap))
1189 (define-key calc-help-map "b" 'calc-describe-bindings)
1190 (define-key calc-help-map "c" 'calc-describe-key-briefly)
1191 (define-key calc-help-map "f" 'calc-describe-function)
1192 (define-key calc-help-map "h" 'calc-full-help)
1193 (define-key calc-help-map "i" 'calc-info)
1194 (define-key calc-help-map "k" 'calc-describe-key)
1195 (define-key calc-help-map "n" 'calc-view-news)
1196 (define-key calc-help-map "s" 'calc-info-summary)
1197 (define-key calc-help-map "t" 'calc-tutorial)
1198 (define-key calc-help-map "v" 'calc-describe-variable)
1199 (define-key calc-help-map "\C-c" 'calc-describe-copying)
1200 (define-key calc-help-map "\C-d" 'calc-describe-distribution)
1201 (define-key calc-help-map "\C-n" 'calc-view-news)
1202 (define-key calc-help-map "\C-w" 'calc-describe-no-warranty)
1203 (define-key calc-help-map "?" 'calc-help-for-help)
1204 (define-key calc-help-map "\C-h" 'calc-help-for-help))
1205
1206 (defvar calc-prefix-help-phase 0)
1207 (defun calc-do-prefix-help (msgs group key)
1208 (if calc-full-help-flag
1209 (list msgs group key)
1210 (if (cdr msgs)
1211 (progn
1212 (setq calc-prefix-help-phase
1213 (if (eq this-command last-command)
1214 (% (1+ calc-prefix-help-phase) (1+ (length msgs)))
1215 0))
1216 (let ((msg (nth calc-prefix-help-phase msgs)))
1217 (message "%s" (if msg
1218 (concat group ": " msg ":"
1219 (make-string
1220 (- (apply 'max (mapcar 'length msgs))
1221 (length msg)) 32)
1222 " [MORE]"
1223 (if key
1224 (concat " " (char-to-string key)
1225 "-")
1226 ""))
1227 (if key (format "%c-" key) "")))))
1228 (setq calc-prefix-help-phase 0)
1229 (if key
1230 (if msgs
1231 (message "%s: %s: %c-" group (car msgs) key)
1232 (message "%s: (none) %c-" group key))
1233 (message "%s: %s" group (car msgs))))
1234 (and key (calc-unread-command key))))
1235
1236 ;;;; Commands.
1237
1238
1239 ;;; General.
1240
1241 (defun calc-reset (arg)
1242 (interactive "P")
1243 (save-excursion
1244 (or (eq major-mode 'calc-mode)
1245 (calc-create-buffer))
1246 (if calc-embedded-info
1247 (calc-embedded nil))
1248 (or arg
1249 (setq calc-stack nil))
1250 (setq calc-undo-list nil
1251 calc-redo-list nil)
1252 (let (calc-stack calc-user-parse-tables calc-standard-date-formats
1253 calc-invocation-macro)
1254 (mapcar (function (lambda (v) (set v nil))) calc-local-var-list)
1255 (mapcar (function (lambda (v) (set (car v) (nth 1 v))))
1256 calc-mode-var-list))
1257 (calc-set-language nil nil t)
1258 (calc-mode)
1259 (calc-flush-caches t)
1260 (run-hooks 'calc-reset-hook))
1261 (calc-wrapper
1262 (let ((win (get-buffer-window (current-buffer))))
1263 (calc-realign 0)
1264 (if win
1265 (let ((height (- (window-height win) 2)))
1266 (set-window-point win (point))
1267 (or (= height calc-window-height)
1268 (let ((swin (selected-window)))
1269 (select-window win)
1270 (enlarge-window (- calc-window-height height))
1271 (select-window swin)))))))
1272 (message "(Calculator reset)"))
1273
1274 ;; What a pain; scroll-left behaves differently when called non-interactively.
1275 (defun calc-scroll-left (n)
1276 (interactive "P")
1277 (setq prefix-arg (or n (/ (window-width) 2)))
1278 (call-interactively #'scroll-left))
1279
1280 (defun calc-scroll-right (n)
1281 (interactive "P")
1282 (setq prefix-arg (or n (/ (window-width) 2)))
1283 (call-interactively #'scroll-right))
1284
1285 (defun calc-scroll-up (n)
1286 (interactive "P")
1287 (condition-case err
1288 (scroll-up (or n (/ (window-height) 2)))
1289 (error nil))
1290 (if (pos-visible-in-window-p (max 1 (- (point-max) 2)))
1291 (if (eq major-mode 'calc-mode)
1292 (calc-realign)
1293 (goto-char (point-max))
1294 (set-window-start (selected-window)
1295 (save-excursion
1296 (forward-line (- (1- (window-height))))
1297 (point)))
1298 (forward-line -1))))
1299
1300 (defun calc-scroll-down (n)
1301 (interactive "P")
1302 (or (pos-visible-in-window-p 1)
1303 (scroll-down (or n (/ (window-height) 2)))))
1304
1305
1306 (defun calc-precision (n)
1307 (interactive "NPrecision: ")
1308 (calc-wrapper
1309 (if (< (prefix-numeric-value n) 3)
1310 (error "Precision must be at least 3 digits")
1311 (calc-change-mode 'calc-internal-prec (prefix-numeric-value n)
1312 (and (memq (car calc-float-format) '(float sci eng))
1313 (< (nth 1 calc-float-format)
1314 (if (= calc-number-radix 10) 0 1))))
1315 (calc-record calc-internal-prec "prec"))
1316 (message "Floating-point precision is %d digits" calc-internal-prec)))
1317
1318
1319 (defun calc-inverse (&optional n)
1320 (interactive "P")
1321 (let* ((hyp-flag (if (eq major-mode 'calc-keypad-mode)
1322 (with-current-buffer calc-main-buffer
1323 calc-hyperbolic-flag)
1324 calc-hyperbolic-flag))
1325 (msg (if hyp-flag
1326 "Inverse Hyperbolic..."
1327 "Inverse...")))
1328 (calc-fancy-prefix 'calc-inverse-flag msg n)))
1329
1330 (defconst calc-fancy-prefix-map
1331 (let ((map (make-sparse-keymap)))
1332 (define-key map [t] 'calc-fancy-prefix-other-key)
1333 (define-key map (vector meta-prefix-char t) 'calc-fancy-prefix-other-key)
1334 (define-key map [switch-frame] nil)
1335 (define-key map [?\C-u] 'universal-argument)
1336 (define-key map [?0] 'digit-argument)
1337 (define-key map [?1] 'digit-argument)
1338 (define-key map [?2] 'digit-argument)
1339 (define-key map [?3] 'digit-argument)
1340 (define-key map [?4] 'digit-argument)
1341 (define-key map [?5] 'digit-argument)
1342 (define-key map [?6] 'digit-argument)
1343 (define-key map [?7] 'digit-argument)
1344 (define-key map [?8] 'digit-argument)
1345 (define-key map [?9] 'digit-argument)
1346 map)
1347 "Keymap used while processing calc-fancy-prefix.")
1348
1349 (defvar calc-is-keypad-press nil)
1350 (defun calc-fancy-prefix (flag msg n)
1351 (let (prefix)
1352 (calc-wrapper
1353 (calc-set-command-flag 'keep-flags)
1354 (calc-set-command-flag 'no-align)
1355 (setq prefix (set flag (not (symbol-value flag)))
1356 prefix-arg n)
1357 (message (if prefix msg "")))
1358 (and prefix
1359 (not calc-is-keypad-press)
1360 (if (boundp 'overriding-terminal-local-map)
1361 (setq overriding-terminal-local-map calc-fancy-prefix-map)
1362 (let ((event (calc-read-key t)))
1363 (if (eq (setq last-command-char (car event)) ?\C-u)
1364 (universal-argument)
1365 (if (or (not (integerp last-command-char))
1366 (and (>= last-command-char 0) (< last-command-char ? )
1367 (not (memq last-command-char '(?\e)))))
1368 (calc-wrapper)) ; clear flags if not a Calc command.
1369 (setq last-command-event (cdr event))
1370 (if (or (not (integerp last-command-char))
1371 (eq last-command-char ?-))
1372 (calc-unread-command)
1373 (digit-argument n))))))))
1374
1375 (defun calc-fancy-prefix-other-key (arg)
1376 (interactive "P")
1377 (if (or (not (integerp last-command-char))
1378 (and (>= last-command-char 0) (< last-command-char ? )
1379 (not (eq last-command-char meta-prefix-char))))
1380 (calc-wrapper)) ; clear flags if not a Calc command.
1381 (calc-unread-command)
1382 (setq overriding-terminal-local-map nil))
1383
1384 (defun calc-invert-func ()
1385 (save-excursion
1386 (calc-select-buffer)
1387 (setq calc-inverse-flag (not (calc-is-inverse))
1388 calc-hyperbolic-flag (calc-is-hyperbolic)
1389 current-prefix-arg nil)))
1390
1391 (defun calc-is-inverse ()
1392 calc-inverse-flag)
1393
1394 (defun calc-hyperbolic (&optional n)
1395 (interactive "P")
1396 (let* ((inv-flag (if (eq major-mode 'calc-keypad-mode)
1397 (with-current-buffer calc-main-buffer
1398 calc-inverse-flag)
1399 calc-inverse-flag))
1400 (msg (if inv-flag
1401 "Inverse Hyperbolic..."
1402 "Hyperbolic...")))
1403 (calc-fancy-prefix 'calc-hyperbolic-flag msg n)))
1404
1405 (defun calc-hyperbolic-func ()
1406 (save-excursion
1407 (calc-select-buffer)
1408 (setq calc-inverse-flag (calc-is-inverse)
1409 calc-hyperbolic-flag (not (calc-is-hyperbolic))
1410 current-prefix-arg nil)))
1411
1412 (defun calc-is-hyperbolic ()
1413 calc-hyperbolic-flag)
1414
1415 (defun calc-keep-args (&optional n)
1416 (interactive "P")
1417 (calc-fancy-prefix 'calc-keep-args-flag "Keep args..." n))
1418
1419
1420 (defun calc-change-mode (var value &optional refresh option)
1421 (if option
1422 (setq value (if value
1423 (> (prefix-numeric-value value) 0)
1424 (not (symbol-value var)))))
1425 (or (consp var) (setq var (list var) value (list value)))
1426 (if calc-inverse-flag
1427 (let ((old nil))
1428 (or refresh (error "Not a display-mode command"))
1429 (calc-check-stack 1)
1430 (unwind-protect
1431 (let ((v var))
1432 (while v
1433 (setq old (cons (symbol-value (car v)) old))
1434 (set (car v) (car value))
1435 (setq v (cdr v)
1436 value (cdr value)))
1437 (calc-refresh-top 1)
1438 (calc-refresh-evaltos)
1439 (symbol-value (car var)))
1440 (let ((v var))
1441 (setq old (nreverse old))
1442 (while v
1443 (set (car v) (car old))
1444 (setq v (cdr v)
1445 old (cdr old)))
1446 (if (eq (car var) 'calc-language)
1447 (calc-set-language calc-language calc-language-option t)))))
1448 (let ((chg nil)
1449 (v var))
1450 (while v
1451 (or (equal (symbol-value (car v)) (car value))
1452 (progn
1453 (set (car v) (car value))
1454 (if (eq (car v) 'calc-float-format)
1455 (setq calc-full-float-format
1456 (list (if (eq (car (car value)) 'fix)
1457 'float
1458 (car (car value)))
1459 0)))
1460 (setq chg t)))
1461 (setq v (cdr v)
1462 value (cdr value)))
1463 (if chg
1464 (progn
1465 (or (and refresh (calc-do-refresh))
1466 (calc-refresh-evaltos))
1467 (and (eq calc-mode-save-mode 'save)
1468 (not (equal var '(calc-mode-save-mode)))
1469 (calc-save-modes))))
1470 (if calc-embedded-info (calc-embedded-modes-change var))
1471 (symbol-value (car var)))))
1472
1473 (defun calc-toggle-banner ()
1474 "Toggle display of the friendly greeting calc normally shows above the stack."
1475 (interactive)
1476 (setq calc-show-banner (not calc-show-banner))
1477 (calc-refresh))
1478
1479 (defun calc-refresh-top (n)
1480 (interactive "p")
1481 (calc-wrapper
1482 (cond ((< n 0)
1483 (setq n (- n))
1484 (let ((entry (calc-top n 'entry))
1485 (calc-undo-list nil) (calc-redo-list nil))
1486 (calc-pop-stack 1 n t)
1487 (calc-push-list (list (car entry)) n (list (nth 2 entry)))))
1488 ((= n 0)
1489 (calc-refresh))
1490 (t
1491 (let ((entries (calc-top-list n 1 'entry))
1492 (calc-undo-list nil) (calc-redo-list nil))
1493 (calc-pop-stack n 1 t)
1494 (calc-push-list (mapcar 'car entries)
1495 1
1496 (mapcar (function (lambda (x) (nth 2 x)))
1497 entries)))))))
1498
1499 (defvar calc-refreshing-evaltos nil)
1500 (defvar calc-no-refresh-evaltos nil)
1501 (defun calc-refresh-evaltos (&optional which-var)
1502 (and calc-any-evaltos calc-auto-recompute (not calc-no-refresh-evaltos)
1503 (let ((calc-refreshing-evaltos t)
1504 (num (calc-stack-size))
1505 (calc-undo-list nil) (calc-redo-list nil)
1506 value new-val)
1507 (while (> num 0)
1508 (setq value (calc-top num 'entry))
1509 (if (and (not (nth 2 value))
1510 (setq value (car value))
1511 (or (eq (car-safe value) 'calcFunc-evalto)
1512 (and (eq (car-safe value) 'vec)
1513 (eq (car-safe (nth 1 value)) 'calcFunc-evalto))))
1514 (progn
1515 (setq new-val (math-normalize value))
1516 (or (equal new-val value)
1517 (progn
1518 (calc-push-list (list new-val) num)
1519 (calc-pop-stack 1 (1+ num) t)))))
1520 (setq num (1- num)))))
1521 (and calc-embedded-active which-var
1522 (calc-embedded-var-change which-var)))
1523
1524 (defun calc-push (&rest vals)
1525 (calc-push-list vals))
1526
1527 (defun calc-pop-push (n &rest vals)
1528 (calc-pop-push-list n vals))
1529
1530 (defun calc-pop-push-record (n prefix &rest vals)
1531 (calc-pop-push-record-list n prefix vals))
1532
1533
1534 (defun calc-evaluate (n)
1535 (interactive "p")
1536 (calc-slow-wrapper
1537 (if (= n 0)
1538 (setq n (calc-stack-size)))
1539 (calc-with-default-simplification
1540 (if (< n 0)
1541 (calc-pop-push-record-list 1 "eval"
1542 (math-evaluate-expr (calc-top (- n)))
1543 (- n))
1544 (calc-pop-push-record-list n "eval" (mapcar 'math-evaluate-expr
1545 (calc-top-list n)))))
1546 (calc-handle-whys)))
1547
1548
1549 (defun calc-eval-num (n)
1550 (interactive "P")
1551 (calc-slow-wrapper
1552 (let* ((nn (prefix-numeric-value n))
1553 (calc-internal-prec (cond ((>= nn 3) nn)
1554 ((< nn 0) (max (+ calc-internal-prec nn)
1555 3))
1556 (t calc-internal-prec)))
1557 (calc-symbolic-mode nil))
1558 (calc-with-default-simplification
1559 (calc-pop-push-record 1 "num" (math-evaluate-expr (calc-top 1)))))
1560 (calc-handle-whys)))
1561
1562
1563 (defun calc-execute-extended-command (n)
1564 (interactive "P")
1565 (let* ((prompt (concat (calc-num-prefix-name n) "M-x "))
1566 (cmd (intern (completing-read prompt obarray 'commandp t "calc-"))))
1567 (setq prefix-arg n)
1568 (command-execute cmd)))
1569
1570
1571 (defun calc-realign (&optional num)
1572 (interactive "P")
1573 (if (and num (eq major-mode 'calc-mode))
1574 (progn
1575 (calc-check-stack num)
1576 (calc-cursor-stack-index num)
1577 (and calc-line-numbering
1578 (forward-char 4)))
1579 (if (and calc-embedded-info
1580 (eq (current-buffer) (aref calc-embedded-info 0)))
1581 (progn
1582 (goto-char (aref calc-embedded-info 2))
1583 (if (save-excursion (set-buffer (aref calc-embedded-info 1))
1584 calc-show-plain)
1585 (forward-line 1)))
1586 (calc-wrapper
1587 (if (get-buffer-window (current-buffer))
1588 (set-window-hscroll (get-buffer-window (current-buffer)) 0))))))
1589
1590 (defvar math-cache-list nil)
1591
1592 (defun calc-var-value (v)
1593 (and (symbolp v)
1594 (boundp v)
1595 (symbol-value v)
1596 (if (symbolp (symbol-value v))
1597 (set v (funcall (symbol-value v)))
1598 (if (stringp (symbol-value v))
1599 (let ((val (math-read-expr (symbol-value v))))
1600 (if (eq (car-safe val) 'error)
1601 (error "Bad format in variable contents: %s" (nth 2 val))
1602 (set v val)))
1603 (symbol-value v)))))
1604
1605 ;;; In the following table, ( OP LOPS ROPS ) means that if an OP
1606 ;;; term appears as the first argument to any LOPS term, or as the
1607 ;;; second argument to any ROPS term, then they should be treated
1608 ;;; as one large term for purposes of associative selection.
1609 (defconst calc-assoc-ops '( ( + ( + - ) ( + ) )
1610 ( - ( + - ) ( + ) )
1611 ( * ( * ) ( * ) )
1612 ( / ( / ) ( ) )
1613 ( | ( | ) ( | ) )
1614 ( calcFunc-land ( calcFunc-land )
1615 ( calcFunc-land ) )
1616 ( calcFunc-lor ( calcFunc-lor )
1617 ( calcFunc-lor ) ) ))
1618
1619
1620 (defvar var-CommuteRules 'calc-CommuteRules)
1621 (defvar var-JumpRules 'calc-JumpRules)
1622 (defvar var-DistribRules 'calc-DistribRules)
1623 (defvar var-MergeRules 'calc-MergeRules)
1624 (defvar var-NegateRules 'calc-NegateRules)
1625 (defvar var-InvertRules 'calc-InvertRules)
1626
1627
1628 (defconst calc-tweak-eqn-table '( ( calcFunc-eq calcFunc-eq calcFunc-neq )
1629 ( calcFunc-neq calcFunc-neq calcFunc-eq )
1630 ( calcFunc-lt calcFunc-gt calcFunc-geq )
1631 ( calcFunc-gt calcFunc-lt calcFunc-leq )
1632 ( calcFunc-leq calcFunc-geq calcFunc-gt )
1633 ( calcFunc-geq calcFunc-leq calcFunc-lt ) ))
1634
1635
1636
1637
1638 (defun calc-float (arg)
1639 (interactive "P")
1640 (calc-slow-wrapper
1641 (calc-unary-op "flt"
1642 (if (calc-is-hyperbolic) 'calcFunc-float 'calcFunc-pfloat)
1643 arg)))
1644
1645
1646 (defvar calc-gnuplot-process nil)
1647 (defvar calc-gnuplot-input)
1648 (defvar calc-gnuplot-buffer)
1649
1650 (defun calc-gnuplot-alive ()
1651 (and calc-gnuplot-process
1652 calc-gnuplot-buffer
1653 (buffer-name calc-gnuplot-buffer)
1654 calc-gnuplot-input
1655 (buffer-name calc-gnuplot-input)
1656 (memq (process-status calc-gnuplot-process) '(run stop))))
1657
1658
1659
1660
1661
1662 (defun calc-load-everything ()
1663 (interactive)
1664 (require 'calc-aent)
1665 (require 'calc-alg)
1666 (require 'calc-arith)
1667 (require 'calc-bin)
1668 (require 'calc-comb)
1669 (require 'calc-cplx)
1670 (require 'calc-embed)
1671 (require 'calc-fin)
1672 (require 'calc-forms)
1673 (require 'calc-frac)
1674 (require 'calc-funcs)
1675 (require 'calc-graph)
1676 (require 'calc-help)
1677 (require 'calc-incom)
1678 (require 'calc-keypd)
1679 (require 'calc-lang)
1680 (require 'calc-macs)
1681 (require 'calc-map)
1682 (require 'calc-math)
1683 (require 'calc-misc)
1684 (require 'calc-mode)
1685 (require 'calc-mtx)
1686 (require 'calc-poly)
1687 (require 'calc-prog)
1688 (require 'calc-rewr)
1689 (require 'calc-rules)
1690 (require 'calc-sel)
1691 (require 'calc-stat)
1692 (require 'calc-store)
1693 (require 'calc-stuff)
1694 (require 'calc-trail)
1695 (require 'calc-undo)
1696 (require 'calc-units)
1697 (require 'calc-vec)
1698 (require 'calc-yank)
1699 (require 'calcalg2)
1700 (require 'calcalg3)
1701 (require 'calccomp)
1702 (require 'calcsel2)
1703
1704 (message "All parts of Calc are now loaded"))
1705
1706
1707 ;;; Vector commands.
1708
1709 (defun calc-concat (arg)
1710 (interactive "P")
1711 (calc-wrapper
1712 (if (calc-is-inverse)
1713 (if (calc-is-hyperbolic)
1714 (calc-enter-result 2 "apnd" (list 'calcFunc-append
1715 (calc-top 1) (calc-top 2)))
1716 (calc-enter-result 2 "|" (list 'calcFunc-vconcat
1717 (calc-top 1) (calc-top 2))))
1718 (if (calc-is-hyperbolic)
1719 (calc-binary-op "apnd" 'calcFunc-append arg '(vec))
1720 (calc-binary-op "|" 'calcFunc-vconcat arg '(vec) nil '|)))))
1721
1722 (defun calc-append (arg)
1723 (interactive "P")
1724 (calc-hyperbolic-func)
1725 (calc-concat arg))
1726
1727
1728 (defconst calc-arg-values '( ( var ArgA var-ArgA ) ( var ArgB var-ArgB )
1729 ( var ArgC var-ArgC ) ( var ArgD var-ArgD )
1730 ( var ArgE var-ArgE ) ( var ArgF var-ArgF )
1731 ( var ArgG var-ArgG ) ( var ArgH var-ArgH )
1732 ( var ArgI var-ArgI ) ( var ArgJ var-ArgJ )
1733 ))
1734
1735 (defun calc-invent-args (n)
1736 (nreverse (nthcdr (- (length calc-arg-values) n) (reverse calc-arg-values))))
1737
1738
1739
1740
1741 ;;; User menu.
1742
1743 (defun calc-user-key-map ()
1744 (if calc-emacs-type-lucid
1745 (error "User-defined keys are not supported in Lucid Emacs"))
1746 (let ((res (cdr (lookup-key calc-mode-map "z"))))
1747 (if (eq (car (car res)) 27)
1748 (cdr res)
1749 res)))
1750
1751 (defvar calc-z-prefix-buf nil)
1752 (defvar calc-z-prefix-msgs nil)
1753
1754 (defun calc-z-prefix-help ()
1755 (interactive)
1756 (let* ((calc-z-prefix-msgs nil)
1757 (calc-z-prefix-buf "")
1758 (kmap (sort (copy-sequence (calc-user-key-map))
1759 (function (lambda (x y) (< (car x) (car y))))))
1760 (flags (apply 'logior
1761 (mapcar (function
1762 (lambda (k)
1763 (calc-user-function-classify (car k))))
1764 kmap))))
1765 (if (= (logand flags 8) 0)
1766 (calc-user-function-list kmap 7)
1767 (calc-user-function-list kmap 1)
1768 (setq calc-z-prefix-msgs (cons calc-z-prefix-buf calc-z-prefix-msgs)
1769 calc-z-prefix-buf "")
1770 (calc-user-function-list kmap 6))
1771 (if (/= flags 0)
1772 (setq calc-z-prefix-msgs (cons calc-z-prefix-buf calc-z-prefix-msgs)))
1773 (calc-do-prefix-help (nreverse calc-z-prefix-msgs) "user" ?z)))
1774
1775 (defun calc-user-function-classify (key)
1776 (cond ((/= key (downcase key)) ; upper-case
1777 (if (assq (downcase key) (calc-user-key-map)) 9 1))
1778 ((/= key (upcase key)) 2) ; lower-case
1779 ((= key ??) 0)
1780 (t 4))) ; other
1781
1782 (defun calc-user-function-list (map flags)
1783 (and map
1784 (let* ((key (car (car map)))
1785 (kind (calc-user-function-classify key))
1786 (func (cdr (car map))))
1787 (if (or (= (logand kind flags) 0)
1788 (not (symbolp func)))
1789 ()
1790 (let* ((name (symbol-name func))
1791 (name (if (string-match "\\`calc-" name)
1792 (substring name 5) name))
1793 (pos (string-match (char-to-string key) name))
1794 (desc
1795 (if (symbolp func)
1796 (if (= (logand kind 3) 0)
1797 (format "`%c' = %s" key name)
1798 (if pos
1799 (format "%s%c%s"
1800 (downcase (substring name 0 pos))
1801 (upcase key)
1802 (downcase (substring name (1+ pos))))
1803 (format "%c = %s"
1804 (upcase key)
1805 (downcase name))))
1806 (char-to-string (upcase key)))))
1807 (if (= (length calc-z-prefix-buf) 0)
1808 (setq calc-z-prefix-buf (concat (if (= flags 1) "SHIFT + " "")
1809 desc))
1810 (if (> (+ (length calc-z-prefix-buf) (length desc)) 58)
1811 (setq calc-z-prefix-msgs
1812 (cons calc-z-prefix-buf calc-z-prefix-msgs)
1813 calc-z-prefix-buf (concat (if (= flags 1) "SHIFT + " "")
1814 desc))
1815 (setq calc-z-prefix-buf (concat calc-z-prefix-buf ", " desc))))))
1816 (calc-user-function-list (cdr map) flags))))
1817
1818
1819
1820 (defun calc-shift-Z-prefix-help ()
1821 (interactive)
1822 (calc-do-prefix-help
1823 '("Define, Undefine, Formula, Kbd-macro, Edit, Get-defn"
1824 "Composition, Syntax; Invocation; Permanent; Timing"
1825 "kbd-macros: [ (if), : (else), | (else-if), ] (end-if)"
1826 "kbd-macros: < > (repeat), ( ) (for), { } (loop)"
1827 "kbd-macros: / (break)"
1828 "kbd-macros: ` (save), ' (restore)")
1829 "user" ?Z))
1830
1831
1832 ;;;; Caches.
1833
1834 (defmacro math-defcache (name init form)
1835 (let ((cache-prec (intern (concat (symbol-name name) "-cache-prec")))
1836 (cache-val (intern (concat (symbol-name name) "-cache")))
1837 (last-prec (intern (concat (symbol-name name) "-last-prec")))
1838 (last-val (intern (concat (symbol-name name) "-last"))))
1839 (list 'progn
1840 (list 'defvar cache-prec (if init (math-numdigs (nth 1 init)) -100))
1841 (list 'defvar cache-val (list 'quote init))
1842 (list 'defvar last-prec -100)
1843 (list 'defvar last-val nil)
1844 (list 'setq 'math-cache-list
1845 (list 'cons
1846 (list 'quote cache-prec)
1847 (list 'cons
1848 (list 'quote last-prec)
1849 'math-cache-list)))
1850 (list 'defun
1851 name ()
1852 (list 'or
1853 (list '= last-prec 'calc-internal-prec)
1854 (list 'setq
1855 last-val
1856 (list 'math-normalize
1857 (list 'progn
1858 (list 'or
1859 (list '>= cache-prec
1860 'calc-internal-prec)
1861 (list 'setq
1862 cache-val
1863 (list 'let
1864 '((calc-internal-prec
1865 (+ calc-internal-prec
1866 4)))
1867 form)
1868 cache-prec
1869 '(+ calc-internal-prec 2)))
1870 cache-val))
1871 last-prec 'calc-internal-prec))
1872 last-val))))
1873 (put 'math-defcache 'lisp-indent-hook 2)
1874
1875 ;;; Betcha didn't know that pi = 16 atan(1/5) - 4 atan(1/239). [F] [Public]
1876 (math-defcache math-pi (float (bigpos 463 238 793 589 653 592 141 3) -21)
1877 (math-add-float (math-mul-float '(float 16 0)
1878 (math-arctan-raw '(float 2 -1)))
1879 (math-mul-float '(float -4 0)
1880 (math-arctan-raw
1881 (math-float '(frac 1 239))))))
1882
1883 (math-defcache math-two-pi nil
1884 (math-mul-float (math-pi) '(float 2 0)))
1885
1886 (math-defcache math-pi-over-2 nil
1887 (math-mul-float (math-pi) '(float 5 -1)))
1888
1889 (math-defcache math-pi-over-4 nil
1890 (math-mul-float (math-pi) '(float 25 -2)))
1891
1892 (math-defcache math-pi-over-180 nil
1893 (math-div-float (math-pi) '(float 18 1)))
1894
1895 (math-defcache math-sqrt-pi nil
1896 (math-sqrt-float (math-pi)))
1897
1898 (math-defcache math-sqrt-2 nil
1899 (math-sqrt-float '(float 2 0)))
1900
1901 (math-defcache math-sqrt-12 nil
1902 (math-sqrt-float '(float 12 0)))
1903
1904 (math-defcache math-sqrt-two-pi nil
1905 (math-sqrt-float (math-two-pi)))
1906
1907 (math-defcache math-sqrt-e (float (bigpos 849 146 128 700 270 721 648 1) -21)
1908 (math-add-float '(float 1 0) (math-exp-minus-1-raw '(float 5 -1))))
1909
1910 (math-defcache math-e nil
1911 (math-pow (math-sqrt-e) 2))
1912
1913 (math-defcache math-phi nil
1914 (math-mul-float (math-add-float (math-sqrt-raw '(float 5 0)) '(float 1 0))
1915 '(float 5 -1)))
1916
1917 (math-defcache math-gamma-const nil
1918 '(float (bigpos 495 467 917 632 470 369 709 646 776 267 677 848 348 672
1919 057 988 235 399 359 593 421 310 024 824 900 120 065 606
1920 328 015 649 156 772 5) -100))
1921
1922 (defun math-half-circle (symb)
1923 (if (eq calc-angle-mode 'rad)
1924 (if symb
1925 '(var pi var-pi)
1926 (math-pi))
1927 180))
1928
1929 (defun math-full-circle (symb)
1930 (math-mul 2 (math-half-circle symb)))
1931
1932 (defun math-quarter-circle (symb)
1933 (math-div (math-half-circle symb) 2))
1934
1935 (defvar math-expand-formulas nil)
1936
1937 ;;;; Miscellaneous math routines.
1938
1939 ;;; True if A is an odd integer. [P R R] [Public]
1940 (defun math-oddp (a)
1941 (if (consp a)
1942 (and (memq (car a) '(bigpos bigneg))
1943 (= (% (nth 1 a) 2) 1))
1944 (/= (% a 2) 0)))
1945
1946 ;;; True if A is a small or big integer. [P x] [Public]
1947 (defun math-integerp (a)
1948 (or (integerp a)
1949 (memq (car-safe a) '(bigpos bigneg))))
1950
1951 ;;; True if A is (numerically) a non-negative integer. [P N] [Public]
1952 (defun math-natnump (a)
1953 (or (natnump a)
1954 (eq (car-safe a) 'bigpos)))
1955
1956 ;;; True if A is a rational (or integer). [P x] [Public]
1957 (defun math-ratp (a)
1958 (or (integerp a)
1959 (memq (car-safe a) '(bigpos bigneg frac))))
1960
1961 ;;; True if A is a real (or rational). [P x] [Public]
1962 (defun math-realp (a)
1963 (or (integerp a)
1964 (memq (car-safe a) '(bigpos bigneg frac float))))
1965
1966 ;;; True if A is a real or HMS form. [P x] [Public]
1967 (defun math-anglep (a)
1968 (or (integerp a)
1969 (memq (car-safe a) '(bigpos bigneg frac float hms))))
1970
1971 ;;; True if A is a number of any kind. [P x] [Public]
1972 (defun math-numberp (a)
1973 (or (integerp a)
1974 (memq (car-safe a) '(bigpos bigneg frac float cplx polar))))
1975
1976 ;;; True if A is a complex number or angle. [P x] [Public]
1977 (defun math-scalarp (a)
1978 (or (integerp a)
1979 (memq (car-safe a) '(bigpos bigneg frac float cplx polar hms))))
1980
1981 ;;; True if A is a vector. [P x] [Public]
1982 (defun math-vectorp (a)
1983 (eq (car-safe a) 'vec))
1984
1985 ;;; True if A is any vector or scalar data object. [P x]
1986 (defun math-objvecp (a) ; [Public]
1987 (or (integerp a)
1988 (memq (car-safe a) '(bigpos bigneg frac float cplx polar
1989 hms date sdev intv mod vec incomplete))))
1990
1991 ;;; True if A is an object not composed of sub-formulas . [P x] [Public]
1992 (defun math-primp (a)
1993 (or (integerp a)
1994 (memq (car-safe a) '(bigpos bigneg frac float cplx polar
1995 hms date mod var))))
1996
1997 ;;; True if A is numerically (but not literally) an integer. [P x] [Public]
1998 (defun math-messy-integerp (a)
1999 (cond
2000 ((eq (car-safe a) 'float) (>= (nth 2 a) 0))
2001 ((eq (car-safe a) 'frac) (Math-integerp (math-normalize a)))))
2002
2003 ;;; True if A is numerically an integer. [P x] [Public]
2004 (defun math-num-integerp (a)
2005 (or (Math-integerp a)
2006 (Math-messy-integerp a)))
2007
2008 ;;; True if A is (numerically) a non-negative integer. [P N] [Public]
2009 (defun math-num-natnump (a)
2010 (or (natnump a)
2011 (eq (car-safe a) 'bigpos)
2012 (and (eq (car-safe a) 'float)
2013 (Math-natnump (nth 1 a))
2014 (>= (nth 2 a) 0))))
2015
2016 ;;; True if A is an integer or will evaluate to an integer. [P x] [Public]
2017 (defun math-provably-integerp (a)
2018 (or (Math-integerp a)
2019 (and (memq (car-safe a) '(calcFunc-trunc
2020 calcFunc-round
2021 calcFunc-rounde
2022 calcFunc-roundu
2023 calcFunc-floor
2024 calcFunc-ceil))
2025 (= (length a) 2))))
2026
2027 ;;; True if A is a real or will evaluate to a real. [P x] [Public]
2028 (defun math-provably-realp (a)
2029 (or (Math-realp a)
2030 (math-provably-integer a)
2031 (memq (car-safe a) '(abs arg))))
2032
2033 ;;; True if A is a non-real, complex number. [P x] [Public]
2034 (defun math-complexp (a)
2035 (memq (car-safe a) '(cplx polar)))
2036
2037 ;;; True if A is a non-real, rectangular complex number. [P x] [Public]
2038 (defun math-rect-complexp (a)
2039 (eq (car-safe a) 'cplx))
2040
2041 ;;; True if A is a non-real, polar complex number. [P x] [Public]
2042 (defun math-polar-complexp (a)
2043 (eq (car-safe a) 'polar))
2044
2045 ;;; True if A is a matrix. [P x] [Public]
2046 (defun math-matrixp (a)
2047 (and (Math-vectorp a)
2048 (Math-vectorp (nth 1 a))
2049 (cdr (nth 1 a))
2050 (let ((len (length (nth 1 a))))
2051 (setq a (cdr a))
2052 (while (and (setq a (cdr a))
2053 (Math-vectorp (car a))
2054 (= (length (car a)) len)))
2055 (null a))))
2056
2057 (defun math-matrixp-step (a len) ; [P L]
2058 (or (null a)
2059 (and (Math-vectorp (car a))
2060 (= (length (car a)) len)
2061 (math-matrixp-step (cdr a) len))))
2062
2063 ;;; True if A is a square matrix. [P V] [Public]
2064 (defun math-square-matrixp (a)
2065 (let ((dims (math-mat-dimens a)))
2066 (and (cdr dims)
2067 (= (car dims) (nth 1 dims)))))
2068
2069 ;;; True if A is any scalar data object. [P x]
2070 (defun math-objectp (a) ; [Public]
2071 (or (integerp a)
2072 (memq (car-safe a) '(bigpos bigneg frac float cplx
2073 polar hms date sdev intv mod))))
2074
2075 ;;; Verify that A is an integer and return A in integer form. [I N; - x]
2076 (defun math-check-integer (a) ; [Public]
2077 (cond ((integerp a) a) ; for speed
2078 ((math-integerp a) a)
2079 ((math-messy-integerp a)
2080 (math-trunc a))
2081 (t (math-reject-arg a 'integerp))))
2082
2083 ;;; Verify that A is a small integer and return A in integer form. [S N; - x]
2084 (defun math-check-fixnum (a &optional allow-inf) ; [Public]
2085 (cond ((integerp a) a) ; for speed
2086 ((Math-num-integerp a)
2087 (let ((a (math-trunc a)))
2088 (if (integerp a)
2089 a
2090 (if (or (Math-lessp (lsh -1 -1) a)
2091 (Math-lessp a (- (lsh -1 -1))))
2092 (math-reject-arg a 'fixnump)
2093 (math-fixnum a)))))
2094 ((and allow-inf (equal a '(var inf var-inf)))
2095 (lsh -1 -1))
2096 ((and allow-inf (equal a '(neg (var inf var-inf))))
2097 (- (lsh -1 -1)))
2098 (t (math-reject-arg a 'fixnump))))
2099
2100 ;;; Verify that A is an integer >= 0 and return A in integer form. [I N; - x]
2101 (defun math-check-natnum (a) ; [Public]
2102 (cond ((natnump a) a)
2103 ((and (not (math-negp a))
2104 (Math-num-integerp a))
2105 (math-trunc a))
2106 (t (math-reject-arg a 'natnump))))
2107
2108 ;;; Verify that A is in floating-point form, or force it to be a float. [F N]
2109 (defun math-check-float (a) ; [Public]
2110 (cond ((eq (car-safe a) 'float) a)
2111 ((Math-vectorp a) (math-map-vec 'math-check-float a))
2112 ((Math-objectp a) (math-float a))
2113 (t a)))
2114
2115 ;;; Verify that A is a constant.
2116 (defun math-check-const (a &optional exp-ok)
2117 (if (or (math-constp a)
2118 (and exp-ok math-expand-formulas))
2119 a
2120 (math-reject-arg a 'constp)))
2121
2122
2123 ;;; Coerce integer A to be a small integer. [S I]
2124 (defun math-fixnum (a)
2125 (if (consp a)
2126 (if (cdr a)
2127 (if (eq (car a) 'bigneg)
2128 (- (math-fixnum-big (cdr a)))
2129 (math-fixnum-big (cdr a)))
2130 0)
2131 a))
2132
2133 (defun math-fixnum-big (a)
2134 (if (cdr a)
2135 (+ (car a) (* (math-fixnum-big (cdr a)) 1000))
2136 (car a)))
2137
2138 (defvar math-simplify-only nil)
2139
2140 (defun math-normalize-fancy (a)
2141 (cond ((eq (car a) 'frac)
2142 (math-make-frac (math-normalize (nth 1 a))
2143 (math-normalize (nth 2 a))))
2144 ((eq (car a) 'cplx)
2145 (let ((real (math-normalize (nth 1 a)))
2146 (imag (math-normalize (nth 2 a))))
2147 (if (and (math-zerop imag)
2148 (not math-simplify-only)) ; oh, what a kludge!
2149 real
2150 (list 'cplx real imag))))
2151 ((eq (car a) 'polar)
2152 (math-normalize-polar a))
2153 ((eq (car a) 'hms)
2154 (math-normalize-hms a))
2155 ((eq (car a) 'date)
2156 (list 'date (math-normalize (nth 1 a))))
2157 ((eq (car a) 'mod)
2158 (math-normalize-mod a))
2159 ((eq (car a) 'sdev)
2160 (let ((x (math-normalize (nth 1 a)))
2161 (s (math-normalize (nth 2 a))))
2162 (if (or (and (Math-objectp x) (not (Math-scalarp x)))
2163 (and (Math-objectp s) (not (Math-scalarp s))))
2164 (list 'calcFunc-sdev x s)
2165 (math-make-sdev x s))))
2166 ((eq (car a) 'intv)
2167 (let ((mask (math-normalize (nth 1 a)))
2168 (lo (math-normalize (nth 2 a)))
2169 (hi (math-normalize (nth 3 a))))
2170 (if (if (eq (car-safe lo) 'date)
2171 (not (eq (car-safe hi) 'date))
2172 (or (and (Math-objectp lo) (not (Math-anglep lo)))
2173 (and (Math-objectp hi) (not (Math-anglep hi)))))
2174 (list 'calcFunc-intv mask lo hi)
2175 (math-make-intv mask lo hi))))
2176 ((eq (car a) 'vec)
2177 (cons 'vec (mapcar 'math-normalize (cdr a))))
2178 ((eq (car a) 'quote)
2179 (math-normalize (nth 1 a)))
2180 ((eq (car a) 'special-const)
2181 (calc-with-default-simplification
2182 (math-normalize (nth 1 a))))
2183 ((eq (car a) 'var)
2184 (cons 'var (cdr a))) ; need to re-cons for selection routines
2185 ((eq (car a) 'calcFunc-if)
2186 (math-normalize-logical-op a))
2187 ((memq (car a) '(calcFunc-lambda calcFunc-quote calcFunc-condition))
2188 (let ((calc-simplify-mode 'none))
2189 (cons (car a) (mapcar 'math-normalize (cdr a)))))
2190 ((eq (car a) 'calcFunc-evalto)
2191 (setq a (or (nth 1 a) 0))
2192 (or calc-refreshing-evaltos
2193 (setq a (let ((calc-simplify-mode 'none)) (math-normalize a))))
2194 (let ((b (if (and (eq (car-safe a) 'calcFunc-assign)
2195 (= (length a) 3))
2196 (nth 2 a)
2197 a)))
2198 (list 'calcFunc-evalto
2199 a
2200 (if (eq calc-simplify-mode 'none)
2201 (math-normalize b)
2202 (calc-with-default-simplification
2203 (math-evaluate-expr b))))))
2204 ((or (integerp (car a)) (consp (car a)))
2205 (if (null (cdr a))
2206 (math-normalize (car a))
2207 (error "Can't use multi-valued function in an expression")))))
2208
2209 ;; The variable math-normalize-a is local to math-normalize in calc.el,
2210 ;; but is used by math-normalize-nonstandard, which is called by
2211 ;; math-normalize.
2212 (defvar math-normalize-a)
2213
2214 (defun math-normalize-nonstandard ()
2215 (if (consp calc-simplify-mode)
2216 (progn
2217 (setq calc-simplify-mode 'none
2218 math-simplify-only (car-safe (cdr-safe math-normalize-a)))
2219 nil)
2220 (and (symbolp (car math-normalize-a))
2221 (or (eq calc-simplify-mode 'none)
2222 (and (eq calc-simplify-mode 'num)
2223 (let ((aptr (setq math-normalize-a
2224 (cons
2225 (car math-normalize-a)
2226 (mapcar 'math-normalize
2227 (cdr math-normalize-a))))))
2228 (while (and aptr (math-constp (car aptr)))
2229 (setq aptr (cdr aptr)))
2230 aptr)))
2231 (cons (car math-normalize-a)
2232 (mapcar 'math-normalize (cdr math-normalize-a))))))
2233
2234
2235 ;;; Normalize a bignum digit list by trimming high-end zeros. [L l]
2236 (defun math-norm-bignum (a)
2237 (let ((digs a) (last nil))
2238 (while digs
2239 (or (eq (car digs) 0) (setq last digs))
2240 (setq digs (cdr digs)))
2241 (and last
2242 (progn
2243 (setcdr last nil)
2244 a))))
2245
2246 (defun math-bignum-test (a) ; [B N; B s; b b]
2247 (if (consp a)
2248 a
2249 (math-bignum a)))
2250
2251
2252 ;;; Return 0 for zero, -1 for negative, 1 for positive. [S n] [Public]
2253 (defun calcFunc-sign (a &optional x)
2254 (let ((signs (math-possible-signs a)))
2255 (cond ((eq signs 4) (or x 1))
2256 ((eq signs 2) 0)
2257 ((eq signs 1) (if x (math-neg x) -1))
2258 ((math-looks-negp a) (math-neg (calcFunc-sign (math-neg a))))
2259 (t (calc-record-why 'realp a)
2260 (if x
2261 (list 'calcFunc-sign a x)
2262 (list 'calcFunc-sign a))))))
2263
2264 ;;; Return 0 if A is numerically equal to B, <0 if less, >0 if more.
2265 ;;; Arguments must be normalized! [S N N]
2266 (defun math-compare (a b)
2267 (cond ((equal a b)
2268 (if (and (consp a)
2269 (memq (car a) '(var neg * /))
2270 (math-infinitep a))
2271 2
2272 0))
2273 ((and (integerp a) (Math-integerp b))
2274 (if (consp b)
2275 (if (eq (car b) 'bigpos) -1 1)
2276 (if (< a b) -1 1)))
2277 ((and (eq (car-safe a) 'bigpos) (Math-integerp b))
2278 (if (eq (car-safe b) 'bigpos)
2279 (math-compare-bignum (cdr a) (cdr b))
2280 1))
2281 ((and (eq (car-safe a) 'bigneg) (Math-integerp b))
2282 (if (eq (car-safe b) 'bigneg)
2283 (math-compare-bignum (cdr b) (cdr a))
2284 -1))
2285 ((eq (car-safe a) 'frac)
2286 (if (eq (car-safe b) 'frac)
2287 (math-compare (math-mul (nth 1 a) (nth 2 b))
2288 (math-mul (nth 1 b) (nth 2 a)))
2289 (math-compare (nth 1 a) (math-mul b (nth 2 a)))))
2290 ((eq (car-safe b) 'frac)
2291 (math-compare (math-mul a (nth 2 b)) (nth 1 b)))
2292 ((and (eq (car-safe a) 'float) (eq (car-safe b) 'float))
2293 (if (math-lessp-float a b) -1 1))
2294 ((and (eq (car-safe a) 'date) (eq (car-safe b) 'date))
2295 (math-compare (nth 1 a) (nth 1 b)))
2296 ((and (or (Math-anglep a)
2297 (and (eq (car a) 'cplx) (eq (nth 2 a) 0)))
2298 (or (Math-anglep b)
2299 (and (eq (car b) 'cplx) (eq (nth 2 b) 0))))
2300 (calcFunc-sign (math-add a (math-neg b))))
2301 ((and (eq (car-safe a) 'intv)
2302 (or (Math-anglep b) (eq (car-safe b) 'date)))
2303 (let ((res (math-compare (nth 2 a) b)))
2304 (cond ((eq res 1) 1)
2305 ((and (eq res 0) (memq (nth 1 a) '(0 1))) 1)
2306 ((eq (setq res (math-compare (nth 3 a) b)) -1) -1)
2307 ((and (eq res 0) (memq (nth 1 a) '(0 2))) -1)
2308 (t 2))))
2309 ((and (eq (car-safe b) 'intv)
2310 (or (Math-anglep a) (eq (car-safe a) 'date)))
2311 (let ((res (math-compare a (nth 2 b))))
2312 (cond ((eq res -1) -1)
2313 ((and (eq res 0) (memq (nth 1 b) '(0 1))) -1)
2314 ((eq (setq res (math-compare a (nth 3 b))) 1) 1)
2315 ((and (eq res 0) (memq (nth 1 b) '(0 2))) 1)
2316 (t 2))))
2317 ((and (eq (car-safe a) 'intv) (eq (car-safe b) 'intv))
2318 (let ((res (math-compare (nth 3 a) (nth 2 b))))
2319 (cond ((eq res -1) -1)
2320 ((and (eq res 0) (or (memq (nth 1 a) '(0 2))
2321 (memq (nth 1 b) '(0 1)))) -1)
2322 ((eq (setq res (math-compare (nth 2 a) (nth 3 b))) 1) 1)
2323 ((and (eq res 0) (or (memq (nth 1 a) '(0 1))
2324 (memq (nth 1 b) '(0 2)))) 1)
2325 (t 2))))
2326 ((math-infinitep a)
2327 (if (or (equal a '(var uinf var-uinf))
2328 (equal a '(var nan var-nan)))
2329 2
2330 (let ((dira (math-infinite-dir a)))
2331 (if (math-infinitep b)
2332 (if (or (equal b '(var uinf var-uinf))
2333 (equal b '(var nan var-nan)))
2334 2
2335 (let ((dirb (math-infinite-dir b)))
2336 (cond ((and (eq dira 1) (eq dirb -1)) 1)
2337 ((and (eq dira -1) (eq dirb 1)) -1)
2338 (t 2))))
2339 (cond ((eq dira 1) 1)
2340 ((eq dira -1) -1)
2341 (t 2))))))
2342 ((math-infinitep b)
2343 (if (or (equal b '(var uinf var-uinf))
2344 (equal b '(var nan var-nan)))
2345 2
2346 (let ((dirb (math-infinite-dir b)))
2347 (cond ((eq dirb 1) -1)
2348 ((eq dirb -1) 1)
2349 (t 2)))))
2350 ((and (eq (car-safe a) 'calcFunc-exp)
2351 (eq (car-safe b) '^)
2352 (equal (nth 1 b) '(var e var-e)))
2353 (math-compare (nth 1 a) (nth 2 b)))
2354 ((and (eq (car-safe b) 'calcFunc-exp)
2355 (eq (car-safe a) '^)
2356 (equal (nth 1 a) '(var e var-e)))
2357 (math-compare (nth 2 a) (nth 1 b)))
2358 ((or (and (eq (car-safe a) 'calcFunc-sqrt)
2359 (eq (car-safe b) '^)
2360 (or (equal (nth 2 b) '(frac 1 2))
2361 (equal (nth 2 b) '(float 5 -1))))
2362 (and (eq (car-safe b) 'calcFunc-sqrt)
2363 (eq (car-safe a) '^)
2364 (or (equal (nth 2 a) '(frac 1 2))
2365 (equal (nth 2 a) '(float 5 -1)))))
2366 (math-compare (nth 1 a) (nth 1 b)))
2367 ((eq (car-safe a) 'var)
2368 2)
2369 (t
2370 (if (and (consp a) (consp b)
2371 (eq (car a) (car b))
2372 (math-compare-lists (cdr a) (cdr b)))
2373 0
2374 2))))
2375
2376 ;;; Compare two bignum digit lists, return -1 for A<B, 0 for A=B, 1 for A>B.
2377 (defun math-compare-bignum (a b) ; [S l l]
2378 (let ((res 0))
2379 (while (and a b)
2380 (if (< (car a) (car b))
2381 (setq res -1)
2382 (if (> (car a) (car b))
2383 (setq res 1)))
2384 (setq a (cdr a)
2385 b (cdr b)))
2386 (if a
2387 (progn
2388 (while (eq (car a) 0) (setq a (cdr a)))
2389 (if a 1 res))
2390 (while (eq (car b) 0) (setq b (cdr b)))
2391 (if b -1 res))))
2392
2393 (defun math-compare-lists (a b)
2394 (cond ((null a) (null b))
2395 ((null b) nil)
2396 (t (and (Math-equal (car a) (car b))
2397 (math-compare-lists (cdr a) (cdr b))))))
2398
2399 (defun math-lessp-float (a b) ; [P F F]
2400 (let ((ediff (- (nth 2 a) (nth 2 b))))
2401 (if (>= ediff 0)
2402 (if (>= ediff (+ calc-internal-prec calc-internal-prec))
2403 (if (eq (nth 1 a) 0)
2404 (Math-integer-posp (nth 1 b))
2405 (Math-integer-negp (nth 1 a)))
2406 (Math-lessp (math-scale-int (nth 1 a) ediff)
2407 (nth 1 b)))
2408 (if (>= (setq ediff (- ediff))
2409 (+ calc-internal-prec calc-internal-prec))
2410 (if (eq (nth 1 b) 0)
2411 (Math-integer-negp (nth 1 a))
2412 (Math-integer-posp (nth 1 b)))
2413 (Math-lessp (nth 1 a)
2414 (math-scale-int (nth 1 b) ediff))))))
2415
2416 ;;; True if A is numerically equal to B. [P N N] [Public]
2417 (defun math-equal (a b)
2418 (= (math-compare a b) 0))
2419
2420 ;;; True if A is numerically less than B. [P R R] [Public]
2421 (defun math-lessp (a b)
2422 (= (math-compare a b) -1))
2423
2424 ;;; True if A is numerically equal to the integer B. [P N S] [Public]
2425 ;;; B must not be a multiple of 10.
2426 (defun math-equal-int (a b)
2427 (or (eq a b)
2428 (and (eq (car-safe a) 'float)
2429 (eq (nth 1 a) b)
2430 (= (nth 2 a) 0))))
2431
2432
2433
2434
2435 ;;; Return the dimensions of a matrix as a list. [l x] [Public]
2436 (defun math-mat-dimens (m)
2437 (if (math-vectorp m)
2438 (if (math-matrixp m)
2439 (cons (1- (length m))
2440 (math-mat-dimens (nth 1 m)))
2441 (list (1- (length m))))
2442 nil))
2443
2444
2445
2446 (defun calc-binary-op-fancy (name func arg ident unary)
2447 (let ((n (prefix-numeric-value arg)))
2448 (cond ((> n 1)
2449 (calc-enter-result n
2450 name
2451 (list 'calcFunc-reduce
2452 (math-calcFunc-to-var func)
2453 (cons 'vec (calc-top-list-n n)))))
2454 ((= n 1)
2455 (if unary
2456 (calc-enter-result 1 name (list unary (calc-top-n 1)))))
2457 ((= n 0)
2458 (if ident
2459 (calc-enter-result 0 name ident)
2460 (error "Argument must be nonzero")))
2461 (t
2462 (let ((rhs (calc-top-n 1)))
2463 (calc-enter-result (- 1 n)
2464 name
2465 (mapcar (function
2466 (lambda (x)
2467 (list func x rhs)))
2468 (calc-top-list-n (- n) 2))))))))
2469
2470 (defun calc-unary-op-fancy (name func arg)
2471 (let ((n (prefix-numeric-value arg)))
2472 (if (= n 0) (setq n (calc-stack-size)))
2473 (cond ((> n 0)
2474 (calc-enter-result n
2475 name
2476 (mapcar (function
2477 (lambda (x)
2478 (list func x)))
2479 (calc-top-list-n n))))
2480 ((< n 0)
2481 (calc-enter-result 1
2482 name
2483 (list func (calc-top-n (- n)))
2484 (- n))))))
2485
2486 (defvar var-Holidays '(vec (var sat var-sat) (var sun var-sun)))
2487 (defvar var-Decls (list 'vec))
2488
2489
2490 (defun math-inexact-result ()
2491 (and calc-symbolic-mode
2492 (signal 'inexact-result nil)))
2493
2494 (defun math-overflow (&optional exp)
2495 (if (and exp (math-negp exp))
2496 (math-underflow)
2497 (signal 'math-overflow nil)))
2498
2499 (defun math-underflow ()
2500 (signal 'math-underflow nil))
2501
2502 ;;; Compute the greatest common divisor of A and B. [I I I] [Public]
2503 (defun math-gcd (a b)
2504 (cond ((not (or (consp a) (consp b)))
2505 (if (< a 0) (setq a (- a)))
2506 (if (< b 0) (setq b (- b)))
2507 (let (c)
2508 (if (< a b)
2509 (setq c b b a a c))
2510 (while (> b 0)
2511 (setq c b
2512 b (% a b)
2513 a c))
2514 a))
2515 ((eq a 0) b)
2516 ((eq b 0) a)
2517 (t
2518 (if (Math-integer-negp a) (setq a (math-neg a)))
2519 (if (Math-integer-negp b) (setq b (math-neg b)))
2520 (let (c)
2521 (if (Math-natnum-lessp a b)
2522 (setq c b b a a c))
2523 (while (and (consp a) (not (eq b 0)))
2524 (setq c b
2525 b (math-imod a b)
2526 a c))
2527 (while (> b 0)
2528 (setq c b
2529 b (% a b)
2530 a c))
2531 a))))
2532
2533
2534 ;;;; Algebra.
2535
2536 ;;; Evaluate variables in an expression.
2537 (defun math-evaluate-expr (x) ; [Public]
2538 (if calc-embedded-info
2539 (calc-embedded-evaluate-expr x)
2540 (calc-normalize (math-evaluate-expr-rec x))))
2541
2542 (defalias 'calcFunc-evalv 'math-evaluate-expr)
2543
2544 (defun calcFunc-evalvn (x &optional prec)
2545 (if prec
2546 (progn
2547 (or (math-num-integerp prec)
2548 (if (and (math-vectorp prec)
2549 (= (length prec) 2)
2550 (math-num-integerp (nth 1 prec)))
2551 (setq prec (math-add (nth 1 prec) calc-internal-prec))
2552 (math-reject-arg prec 'integerp)))
2553 (setq prec (math-trunc prec))
2554 (if (< prec 3) (setq prec 3))
2555 (if (> prec calc-internal-prec)
2556 (math-normalize
2557 (let ((calc-internal-prec prec))
2558 (calcFunc-evalvn x)))
2559 (let ((calc-internal-prec prec))
2560 (calcFunc-evalvn x))))
2561 (let ((calc-symbolic-mode nil))
2562 (math-evaluate-expr x))))
2563
2564 (defun math-evaluate-expr-rec (x)
2565 (if (consp x)
2566 (if (memq (car x) '(calcFunc-quote calcFunc-condition
2567 calcFunc-evalto calcFunc-assign))
2568 (if (and (eq (car x) 'calcFunc-assign)
2569 (= (length x) 3))
2570 (list (car x) (nth 1 x) (math-evaluate-expr-rec (nth 2 x)))
2571 x)
2572 (if (eq (car x) 'var)
2573 (if (and (calc-var-value (nth 2 x))
2574 (not (eq (car-safe (symbol-value (nth 2 x)))
2575 'incomplete)))
2576 (let ((val (symbol-value (nth 2 x))))
2577 (if (eq (car-safe val) 'special-const)
2578 (if calc-symbolic-mode
2579 x
2580 val)
2581 val))
2582 x)
2583 (if (Math-primp x)
2584 x
2585 (cons (car x) (mapcar 'math-evaluate-expr-rec (cdr x))))))
2586 x))
2587
2588 (defun math-any-floats (expr)
2589 (if (Math-primp expr)
2590 (math-floatp expr)
2591 (while (and (setq expr (cdr expr)) (not (math-any-floats (car expr)))))
2592 expr))
2593
2594 (defvar var-FactorRules 'calc-FactorRules)
2595
2596 (defvar math-mt-many nil)
2597 (defvar math-mt-func nil)
2598
2599 (defun math-map-tree (math-mt-func mmt-expr &optional math-mt-many)
2600 (or math-mt-many (setq math-mt-many 1000000))
2601 (math-map-tree-rec mmt-expr))
2602
2603 (defun math-map-tree-rec (mmt-expr)
2604 (or (= math-mt-many 0)
2605 (let ((mmt-done nil)
2606 mmt-nextval)
2607 (while (not mmt-done)
2608 (while (and (/= math-mt-many 0)
2609 (setq mmt-nextval (funcall math-mt-func mmt-expr))
2610 (not (equal mmt-expr mmt-nextval)))
2611 (setq mmt-expr mmt-nextval
2612 math-mt-many (if (> math-mt-many 0)
2613 (1- math-mt-many)
2614 (1+ math-mt-many))))
2615 (if (or (Math-primp mmt-expr)
2616 (<= math-mt-many 0))
2617 (setq mmt-done t)
2618 (setq mmt-nextval (cons (car mmt-expr)
2619 (mapcar 'math-map-tree-rec
2620 (cdr mmt-expr))))
2621 (if (equal mmt-nextval mmt-expr)
2622 (setq mmt-done t)
2623 (setq mmt-expr mmt-nextval))))))
2624 mmt-expr)
2625
2626 (defun math-is-true (expr)
2627 (if (Math-numberp expr)
2628 (not (Math-zerop expr))
2629 (math-known-nonzerop expr)))
2630
2631 (defun math-const-var (expr)
2632 (and (consp expr)
2633 (eq (car expr) 'var)
2634 (or (and (symbolp (nth 2 expr))
2635 (boundp (nth 2 expr))
2636 (eq (car-safe (symbol-value (nth 2 expr))) 'special-const))
2637 (memq (nth 2 expr) '(var-inf var-uinf var-nan)))))
2638
2639 ;; The variable math-integral-cache is originally declared in calcalg2.el,
2640 ;; but is set by math-defintegral and math-definitegral2.
2641 (defvar math-integral-cache)
2642
2643 (defmacro math-defintegral (funcs &rest code)
2644 (setq math-integral-cache nil)
2645 (append '(progn)
2646 (mapcar (function
2647 (lambda (func)
2648 (list 'put (list 'quote func) ''math-integral
2649 (list 'nconc
2650 (list 'get (list 'quote func) ''math-integral)
2651 (list 'list
2652 (list 'function
2653 (append '(lambda (u))
2654 code)))))))
2655 (if (symbolp funcs) (list funcs) funcs))))
2656 (put 'math-defintegral 'lisp-indent-hook 1)
2657
2658 (defmacro math-defintegral-2 (funcs &rest code)
2659 (setq math-integral-cache nil)
2660 (append '(progn)
2661 (mapcar (function
2662 (lambda (func)
2663 (list 'put (list 'quote func) ''math-integral-2
2664 (list 'nconc
2665 (list 'get (list 'quote func)
2666 ''math-integral-2)
2667 (list 'list
2668 (list 'function
2669 (append '(lambda (u v))
2670 code)))))))
2671 (if (symbolp funcs) (list funcs) funcs))))
2672 (put 'math-defintegral-2 'lisp-indent-hook 1)
2673
2674 (defvar var-IntegAfterRules 'calc-IntegAfterRules)
2675
2676 (defvar var-FitRules 'calc-FitRules)
2677
2678 (defvar math-poly-base-variable nil)
2679 (defvar math-poly-neg-powers nil)
2680 (defvar math-poly-mult-powers 1)
2681 (defvar math-poly-frac-powers nil)
2682 (defvar math-poly-exp-base nil)
2683
2684 (defun math-build-var-name (name)
2685 (if (stringp name)
2686 (setq name (intern name)))
2687 (if (string-match "\\`var-." (symbol-name name))
2688 (list 'var (intern (substring (symbol-name name) 4)) name)
2689 (list 'var name (intern (concat "var-" (symbol-name name))))))
2690
2691 (defvar math-simplifying-units nil)
2692 (defvar math-combining-units t)
2693
2694 ;;; Nontrivial number parsing.
2695
2696 (defun math-read-number-fancy (s)
2697 (cond
2698
2699 ;; Integer+fractions
2700 ((string-match "^\\([0-9]*\\)[:/]\\([0-9]*\\)[:/]\\([0-9]*\\)$" s)
2701 (let ((int (math-match-substring s 1))
2702 (num (math-match-substring s 2))
2703 (den (math-match-substring s 3)))
2704 (let ((int (if (> (length int) 0) (math-read-number int) 0))
2705 (num (if (> (length num) 0) (math-read-number num) 1))
2706 (den (if (> (length num) 0) (math-read-number den) 1)))
2707 (and int num den
2708 (math-integerp int) (math-integerp num) (math-integerp den)
2709 (not (math-zerop den))
2710 (list 'frac (math-add num (math-mul int den)) den)))))
2711
2712 ;; Fractions
2713 ((string-match "^\\([0-9]*\\)[:/]\\([0-9]*\\)$" s)
2714 (let ((num (math-match-substring s 1))
2715 (den (math-match-substring s 2)))
2716 (let ((num (if (> (length num) 0) (math-read-number num) 1))
2717 (den (if (> (length num) 0) (math-read-number den) 1)))
2718 (and num den (math-integerp num) (math-integerp den)
2719 (not (math-zerop den))
2720 (list 'frac num den)))))
2721
2722 ;; Modulo forms
2723 ((string-match "^\\(.*\\) *mod *\\(.*\\)$" s)
2724 (let* ((n (math-match-substring s 1))
2725 (m (math-match-substring s 2))
2726 (n (math-read-number n))
2727 (m (math-read-number m)))
2728 (and n m (math-anglep n) (math-anglep m)
2729 (list 'mod n m))))
2730
2731 ;; Error forms
2732 ((string-match "^\\(.*\\) *\\+/- *\\(.*\\)$" s)
2733 (let* ((x (math-match-substring s 1))
2734 (sigma (math-match-substring s 2))
2735 (x (math-read-number x))
2736 (sigma (math-read-number sigma)))
2737 (and x sigma (math-scalarp x) (math-anglep sigma)
2738 (list 'sdev x sigma))))
2739
2740 ;; Hours (or degrees)
2741 ((or (string-match "^\\([^#^]+\\)[@oOhH]\\(.*\\)$" s)
2742 (string-match "^\\([^#^]+\\)[dD][eE]?[gG]?\\(.*\\)$" s))
2743 (let* ((hours (math-match-substring s 1))
2744 (minsec (math-match-substring s 2))
2745 (hours (math-read-number hours))
2746 (minsec (if (> (length minsec) 0) (math-read-number minsec) 0)))
2747 (and hours minsec
2748 (math-num-integerp hours)
2749 (not (math-negp hours)) (not (math-negp minsec))
2750 (cond ((math-num-integerp minsec)
2751 (and (Math-lessp minsec 60)
2752 (list 'hms hours minsec 0)))
2753 ((and (eq (car-safe minsec) 'hms)
2754 (math-zerop (nth 1 minsec)))
2755 (math-add (list 'hms hours 0 0) minsec))
2756 (t nil)))))
2757
2758 ;; Minutes
2759 ((string-match "^\\([^'#^]+\\)[mM']\\(.*\\)$" s)
2760 (let* ((minutes (math-match-substring s 1))
2761 (seconds (math-match-substring s 2))
2762 (minutes (math-read-number minutes))
2763 (seconds (if (> (length seconds) 0) (math-read-number seconds) 0)))
2764 (and minutes seconds
2765 (math-num-integerp minutes)
2766 (not (math-negp minutes)) (not (math-negp seconds))
2767 (cond ((math-realp seconds)
2768 (and (Math-lessp minutes 60)
2769 (list 'hms 0 minutes seconds)))
2770 ((and (eq (car-safe seconds) 'hms)
2771 (math-zerop (nth 1 seconds))
2772 (math-zerop (nth 2 seconds)))
2773 (math-add (list 'hms 0 minutes 0) seconds))
2774 (t nil)))))
2775
2776 ;; Seconds
2777 ((string-match "^\\([^\"#^]+\\)[sS\"]$" s)
2778 (let ((seconds (math-read-number (math-match-substring s 1))))
2779 (and seconds (math-realp seconds)
2780 (not (math-negp seconds))
2781 (Math-lessp seconds 60)
2782 (list 'hms 0 0 seconds))))
2783
2784 ;; Integer+fraction with explicit radix
2785 ((string-match "^\\([0-9]+\\)\\(#\\|\\^\\^\\)\\([0-9a-zA-Z]*\\)[:/]\\([0-9a-zA-Z]*\\)[:/]\\([0-9a-zA-Z]\\)$" s)
2786 (let ((radix (string-to-int (math-match-substring s 1)))
2787 (int (math-match-substring s 3))
2788 (num (math-match-substring s 4))
2789 (den (math-match-substring s 5)))
2790 (let ((int (if (> (length int) 0) (math-read-radix int radix) 0))
2791 (num (if (> (length num) 0) (math-read-radix num radix) 1))
2792 (den (if (> (length den) 0) (math-read-radix den radix) 1)))
2793 (and int num den (not (math-zerop den))
2794 (list 'frac
2795 (math-add num (math-mul int den))
2796 den)))))
2797
2798 ;; Fraction with explicit radix
2799 ((string-match "^\\([0-9]+\\)\\(#\\|\\^\\^\\)\\([0-9a-zA-Z]*\\)[:/]\\([0-9a-zA-Z]*\\)$" s)
2800 (let ((radix (string-to-int (math-match-substring s 1)))
2801 (num (math-match-substring s 3))
2802 (den (math-match-substring s 4)))
2803 (let ((num (if (> (length num) 0) (math-read-radix num radix) 1))
2804 (den (if (> (length den) 0) (math-read-radix den radix) 1)))
2805 (and num den (not (math-zerop den)) (list 'frac num den)))))
2806
2807 ;; Float with explicit radix and exponent
2808 ((or (string-match "^0*\\(\\([2-9]\\|1[0-4]\\)\\(#\\|\\^\\^\\)[0-9a-dA-D.]+\\)[eE]\\([-+]?[0-9]+\\)$" s)
2809 (string-match "^\\(\\([0-9]+\\)\\(#\\|\\^\\^\\)[0-9a-zA-Z.]+\\) *\\* *\\2\\.? *\\^ *\\([-+]?[0-9]+\\)$" s))
2810 (let ((radix (string-to-int (math-match-substring s 2)))
2811 (mant (math-match-substring s 1))
2812 (exp (math-match-substring s 4)))
2813 (let ((mant (math-read-number mant))
2814 (exp (math-read-number exp)))
2815 (and mant exp
2816 (math-mul mant (math-pow (math-float radix) exp))))))
2817
2818 ;; Float with explicit radix, no exponent
2819 ((string-match "^\\([0-9]+\\)\\(#\\|\\^\\^\\)\\([0-9a-zA-Z]*\\)\\.\\([0-9a-zA-Z]*\\)$" s)
2820 (let ((radix (string-to-int (math-match-substring s 1)))
2821 (int (math-match-substring s 3))
2822 (fracs (math-match-substring s 4)))
2823 (let ((int (if (> (length int) 0) (math-read-radix int radix) 0))
2824 (frac (if (> (length fracs) 0) (math-read-radix fracs radix) 0))
2825 (calc-prefer-frac nil))
2826 (and int frac
2827 (math-add int (math-div frac (math-pow radix (length fracs))))))))
2828
2829 ;; Integer with explicit radix
2830 ((string-match "^\\([0-9]+\\)\\(#\\|\\^\\^\\)\\([0-9a-zA-Z]+\\)$" s)
2831 (math-read-radix (math-match-substring s 3)
2832 (string-to-int (math-match-substring s 1))))
2833
2834 ;; C language hexadecimal notation
2835 ((and (eq calc-language 'c)
2836 (string-match "^0[xX]\\([0-9a-fA-F]+\\)$" s))
2837 (let ((digs (math-match-substring s 1)))
2838 (math-read-radix digs 16)))
2839
2840 ;; Pascal language hexadecimal notation
2841 ((and (eq calc-language 'pascal)
2842 (string-match "^\\$\\([0-9a-fA-F]+\\)$" s))
2843 (let ((digs (math-match-substring s 1)))
2844 (math-read-radix digs 16)))
2845
2846 ;; Fraction using "/" instead of ":"
2847 ((string-match "^\\([0-9]+\\)/\\([0-9/]+\\)$" s)
2848 (math-read-number (concat (math-match-substring s 1) ":"
2849 (math-match-substring s 2))))
2850
2851 ;; Syntax error!
2852 (t nil)))
2853
2854 (defun math-read-radix (s r) ; [I X D]
2855 (setq s (upcase s))
2856 (let ((i 0)
2857 (res 0)
2858 dig)
2859 (while (and (< i (length s))
2860 (setq dig (math-read-radix-digit (elt s i)))
2861 (< dig r))
2862 (setq res (math-add (math-mul res r) dig)
2863 i (1+ i)))
2864 (and (= i (length s))
2865 res)))
2866
2867
2868
2869 ;;; Expression parsing.
2870
2871 (defvar math-expr-data)
2872
2873 (defvar math-read-replacement-list
2874 '(;; Misc symbols
2875 ("±" "+/-") ; plus or minus
2876 ("×" "*") ; multiplication sign
2877 ("÷" ":") ; division sign
2878 ("−" "-") ; subtraction sign
2879 ("∕" "/") ; division sign
2880 ("∗" "*") ; asterisk multiplication
2881 ("∞" "inf") ; infinity symbol
2882 ("≤" "<=")
2883 ("≥" ">=")
2884 ("≦" "<=")
2885 ("≧" ">=")
2886 ;; fractions
2887 ("¼" "(1:4)") ; 1/4
2888 ("½" "(1:2)") ; 1/2
2889 ("¾" "(3:4)") ; 3/4
2890 ("⅓" "(1:3)") ; 1/3
2891 ("⅔" "(2:3)") ; 2/3
2892 ("⅕" "(1:5)") ; 1/5
2893 ("⅖" "(2:5)") ; 2/5
2894 ("⅗" "(3:5)") ; 3/5
2895 ("⅘" "(4:5)") ; 4/5
2896 ("⅙" "(1:6)") ; 1/6
2897 ("⅚" "(5:6)") ; 5/6
2898 ("⅛" "(1:8)") ; 1/8
2899 ("⅜" "(3:8)") ; 3/8
2900 ("⅝" "(5:8)") ; 5/8
2901 ("⅞" "(7:8)") ; 7/8
2902 ("⅟" "1:") ; 1/...
2903 ;; superscripts
2904 ("⁰" "0") ; 0
2905 ("¹" "1") ; 1
2906 ("²" "2") ; 2
2907 ("³" "3") ; 3
2908 ("⁴" "4") ; 4
2909 ("⁵" "5") ; 5
2910 ("⁶" "6") ; 6
2911 ("⁷" "7") ; 7
2912 ("⁸" "8") ; 8
2913 ("⁹" "9") ; 9
2914 ("⁺" "+") ; +
2915 ("⁻" "-") ; -
2916 ("⁽" "(") ; (
2917 ("⁾" ")") ; )
2918 ("ⁿ" "n") ; n
2919 ("ⁱ" "i")) ; i
2920 "A list whose elements (old new) indicate replacements to make
2921 in Calc algebraic input.")
2922
2923 (defvar math-read-superscripts
2924 "⁰¹²³⁴⁵⁶⁷⁸⁹⁺⁻⁽⁾ⁿⁱ" ; 0123456789+-()ni
2925 "A string consisting of the superscripts allowed by Calc.")
2926
2927 (defun math-read-preprocess-string (str)
2928 "Replace some substrings of STR by Calc equivalents."
2929 (setq str
2930 (replace-regexp-in-string (concat "[" math-read-superscripts "]+")
2931 "^(\\&)" str))
2932 (let ((rep-list math-read-replacement-list))
2933 (while rep-list
2934 (setq str
2935 (replace-regexp-in-string (nth 0 (car rep-list))
2936 (nth 1 (car rep-list)) str))
2937 (setq rep-list (cdr rep-list))))
2938 str)
2939
2940 (defun math-read-expr (math-exp-str)
2941 (let ((math-exp-pos 0)
2942 (math-exp-old-pos 0)
2943 (math-exp-keep-spaces nil)
2944 math-exp-token math-expr-data)
2945 (setq math-exp-str (math-read-preprocess-string math-exp-str))
2946 (while (setq math-exp-token (string-match "\\.\\.\\([^.]\\|.[^.]\\)" math-exp-str))
2947 (setq math-exp-str (concat (substring math-exp-str 0 math-exp-token) "\\dots"
2948 (substring math-exp-str (+ math-exp-token 2)))))
2949 (math-build-parse-table)
2950 (math-read-token)
2951 (let ((val (catch 'syntax (math-read-expr-level 0))))
2952 (if (stringp val)
2953 (list 'error math-exp-old-pos val)
2954 (if (equal math-exp-token 'end)
2955 val
2956 (list 'error math-exp-old-pos "Syntax error"))))))
2957
2958 (defun math-read-plain-expr (exp-str &optional error-check)
2959 (let* ((calc-language nil)
2960 (math-expr-opers math-standard-opers)
2961 (val (math-read-expr exp-str)))
2962 (and error-check
2963 (eq (car-safe val) 'error)
2964 (error "%s: %s" (nth 2 val) exp-str))
2965 val))
2966
2967
2968 (defun math-read-string ()
2969 (let ((str (read-from-string (concat math-expr-data "\""))))
2970 (or (and (= (cdr str) (1+ (length math-expr-data)))
2971 (stringp (car str)))
2972 (throw 'syntax "Error in string constant"))
2973 (math-read-token)
2974 (append '(vec) (car str) nil)))
2975
2976
2977
2978 ;;; They said it couldn't be done...
2979
2980 (defun math-read-big-expr (str)
2981 (and (> (length calc-left-label) 0)
2982 (string-match (concat "^" (regexp-quote calc-left-label)) str)
2983 (setq str (concat (substring str 0 (match-beginning 0))
2984 (substring str (match-end 0)))))
2985 (and (> (length calc-right-label) 0)
2986 (string-match (concat (regexp-quote calc-right-label) " *$") str)
2987 (setq str (concat (substring str 0 (match-beginning 0))
2988 (substring str (match-end 0)))))
2989 (if (string-match "\\\\[^ \n|]" str)
2990 (if (eq calc-language 'tex)
2991 (math-read-expr str)
2992 (let ((calc-language 'tex)
2993 (calc-language-option nil)
2994 (math-expr-opers (get 'tex 'math-oper-table))
2995 (math-expr-function-mapping (get 'tex 'math-function-table))
2996 (math-expr-variable-mapping (get 'tex 'math-variable-table)))
2997 (math-read-expr str)))
2998 (let ((math-read-big-lines nil)
2999 (pos 0)
3000 (width 0)
3001 (math-read-big-err-msg nil)
3002 math-read-big-baseline math-read-big-h2
3003 new-pos p)
3004 (while (setq new-pos (string-match "\n" str pos))
3005 (setq math-read-big-lines
3006 (cons (substring str pos new-pos) math-read-big-lines)
3007 pos (1+ new-pos)))
3008 (setq math-read-big-lines
3009 (nreverse (cons (substring str pos) math-read-big-lines))
3010 p math-read-big-lines)
3011 (while p
3012 (setq width (max width (length (car p)))
3013 p (cdr p)))
3014 (if (math-read-big-bigp math-read-big-lines)
3015 (or (catch 'syntax
3016 (math-read-big-rec 0 0 width (length math-read-big-lines)))
3017 math-read-big-err-msg
3018 '(error 0 "Syntax error"))
3019 (math-read-expr str)))))
3020
3021 (defun math-read-big-bigp (math-read-big-lines)
3022 (and (cdr math-read-big-lines)
3023 (let ((matrix nil)
3024 (v 0)
3025 (height (if (> (length (car math-read-big-lines)) 0) 1 0)))
3026 (while (and (cdr math-read-big-lines)
3027 (let* ((i 0)
3028 j
3029 (l1 (car math-read-big-lines))
3030 (l2 (nth 1 math-read-big-lines))
3031 (len (min (length l1) (length l2))))
3032 (if (> (length l2) 0)
3033 (setq height (1+ height)))
3034 (while (and (< i len)
3035 (or (memq (aref l1 i) '(?\ ?\- ?\_))
3036 (memq (aref l2 i) '(?\ ?\-))
3037 (and (memq (aref l1 i) '(?\| ?\,))
3038 (= (aref l2 i) (aref l1 i)))
3039 (and (eq (aref l1 i) ?\[)
3040 (eq (aref l2 i) ?\[)
3041 (let ((math-rb-h2 (length l1)))
3042 (setq j (math-read-big-balance
3043 (1+ i) v "[")))
3044 (setq i (1- j)))))
3045 (setq i (1+ i)))
3046 (or (= i len)
3047 (and (eq (aref l1 i) ?\[)
3048 (eq (aref l2 i) ?\[)
3049 (setq matrix t)
3050 nil))))
3051 (setq math-read-big-lines (cdr math-read-big-lines)
3052 v (1+ v)))
3053 (or (and (> height 1)
3054 (not (cdr math-read-big-lines)))
3055 matrix))))
3056
3057 ;;; Nontrivial "flat" formatting.
3058
3059 (defvar math-format-hash-args nil)
3060 (defvar calc-can-abbrev-vectors nil)
3061
3062 (defun math-format-flat-expr-fancy (a prec)
3063 (cond
3064 ((eq (car a) 'incomplete)
3065 (format "<incomplete %s>" (nth 1 a)))
3066 ((eq (car a) 'vec)
3067 (if (or calc-full-trail-vectors (not calc-can-abbrev-vectors)
3068 (< (length a) 7))
3069 (concat "[" (math-format-flat-vector (cdr a) ", "
3070 (if (cdr (cdr a)) 0 1000)) "]")
3071 (concat "["
3072 (math-format-flat-expr (nth 1 a) 0) ", "
3073 (math-format-flat-expr (nth 2 a) 0) ", "
3074 (math-format-flat-expr (nth 3 a) 0) ", ..., "
3075 (math-format-flat-expr (nth (1- (length a)) a) 0) "]")))
3076 ((eq (car a) 'intv)
3077 (concat (if (memq (nth 1 a) '(0 1)) "(" "[")
3078 (math-format-flat-expr (nth 2 a) 1000)
3079 " .. "
3080 (math-format-flat-expr (nth 3 a) 1000)
3081 (if (memq (nth 1 a) '(0 2)) ")" "]")))
3082 ((eq (car a) 'date)
3083 (concat "<" (math-format-date a) ">"))
3084 ((and (eq (car a) 'calcFunc-lambda) (> (length a) 2))
3085 (let ((p (cdr a))
3086 (ap calc-arg-values)
3087 (math-format-hash-args (if (= (length a) 3) 1 t)))
3088 (while (and (cdr p) (equal (car p) (car ap)))
3089 (setq p (cdr p) ap (cdr ap)))
3090 (concat "<"
3091 (if (cdr p)
3092 (concat (math-format-flat-vector
3093 (nreverse (cdr (reverse (cdr a)))) ", " 0)
3094 " : ")
3095 "")
3096 (math-format-flat-expr (nth (1- (length a)) a) 0)
3097 ">")))
3098 ((eq (car a) 'var)
3099 (or (and math-format-hash-args
3100 (let ((p calc-arg-values) (v 1))
3101 (while (and p (not (equal (car p) a)))
3102 (setq p (and (eq math-format-hash-args t) (cdr p))
3103 v (1+ v)))
3104 (and p
3105 (if (eq math-format-hash-args 1)
3106 "#"
3107 (format "#%d" v)))))
3108 (symbol-name (nth 1 a))))
3109 ((and (memq (car a) '(calcFunc-string calcFunc-bstring))
3110 (= (length a) 2)
3111 (math-vectorp (nth 1 a))
3112 (math-vector-is-string (nth 1 a)))
3113 (concat (substring (symbol-name (car a)) 9)
3114 "(" (math-vector-to-string (nth 1 a) t) ")"))
3115 (t
3116 (let ((op (math-assq2 (car a) math-standard-opers)))
3117 (cond ((and op (= (length a) 3))
3118 (if (> prec (min (nth 2 op) (nth 3 op)))
3119 (concat "(" (math-format-flat-expr a 0) ")")
3120 (let ((lhs (math-format-flat-expr (nth 1 a) (nth 2 op)))
3121 (rhs (math-format-flat-expr (nth 2 a) (nth 3 op))))
3122 (setq op (car op))
3123 (if (or (equal op "^") (equal op "_"))
3124 (if (= (aref lhs 0) ?-)
3125 (setq lhs (concat "(" lhs ")")))
3126 (setq op (concat " " op " ")))
3127 (concat lhs op rhs))))
3128 ((eq (car a) 'neg)
3129 (concat "-" (math-format-flat-expr (nth 1 a) 1000)))
3130 (t
3131 (concat (math-remove-dashes
3132 (if (string-match "\\`calcFunc-\\([a-zA-Z0-9']+\\)\\'"
3133 (symbol-name (car a)))
3134 (math-match-substring (symbol-name (car a)) 1)
3135 (symbol-name (car a))))
3136 "("
3137 (math-format-flat-vector (cdr a) ", " 0)
3138 ")")))))))
3139
3140 (defun math-format-flat-vector (vec sep prec)
3141 (if vec
3142 (let ((buf (math-format-flat-expr (car vec) prec)))
3143 (while (setq vec (cdr vec))
3144 (setq buf (concat buf sep (math-format-flat-expr (car vec) prec))))
3145 buf)
3146 ""))
3147
3148 (defun math-format-nice-expr (x w)
3149 (cond ((and (eq (car-safe x) 'vec)
3150 (cdr (cdr x))
3151 (let ((ops '(vec calcFunc-assign calcFunc-condition
3152 calcFunc-schedule calcFunc-iterations
3153 calcFunc-phase)))
3154 (or (memq (car-safe (nth 1 x)) ops)
3155 (memq (car-safe (nth 2 x)) ops)
3156 (memq (car-safe (nth 3 x)) ops)
3157 calc-break-vectors)))
3158 (concat "[ " (math-format-flat-vector (cdr x) ",\n " 0) " ]"))
3159 (t
3160 (let ((str (math-format-flat-expr x 0))
3161 (pos 0) p)
3162 (or (string-match "\"" str)
3163 (while (<= (setq p (+ pos w)) (length str))
3164 (while (and (> (setq p (1- p)) pos)
3165 (not (= (aref str p) ? ))))
3166 (if (> p (+ pos 5))
3167 (setq str (concat (substring str 0 p)
3168 "\n "
3169 (substring str p))
3170 pos (1+ p))
3171 (setq pos (+ pos w)))))
3172 str))))
3173
3174 (defun math-assq2 (v a)
3175 (while (and a (not (eq v (nth 1 (car a)))))
3176 (setq a (cdr a)))
3177 (car a))
3178
3179 (defun math-format-number-fancy (a prec)
3180 (cond
3181 ((eq (car a) 'float) ; non-decimal radix
3182 (if (Math-integer-negp (nth 1 a))
3183 (concat "-" (math-format-number (math-neg a)))
3184 (let ((str (if (and calc-radix-formatter
3185 (not (memq calc-language '(c pascal))))
3186 (funcall calc-radix-formatter
3187 calc-number-radix
3188 (math-format-radix-float a prec))
3189 (format "%d#%s" calc-number-radix
3190 (math-format-radix-float a prec)))))
3191 (if (and prec (> prec 191) (string-match "\\*" str))
3192 (concat "(" str ")")
3193 str))))
3194 ((eq (car a) 'frac)
3195 (setq a (math-adjust-fraction a))
3196 (if (> (length (car calc-frac-format)) 1)
3197 (if (Math-integer-negp (nth 1 a))
3198 (concat "-" (math-format-number (math-neg a)))
3199 (let ((q (math-idivmod (nth 1 a) (nth 2 a))))
3200 (concat (let ((calc-frac-format nil))
3201 (math-format-number (car q)))
3202 (substring (car calc-frac-format) 0 1)
3203 (let ((math-radix-explicit-format nil)
3204 (calc-frac-format nil))
3205 (math-format-number (cdr q)))
3206 (substring (car calc-frac-format) 1 2)
3207 (let ((math-radix-explicit-format nil)
3208 (calc-frac-format nil))
3209 (math-format-number (nth 2 a))))))
3210 (concat (let ((calc-frac-format nil))
3211 (math-format-number (nth 1 a)))
3212 (car calc-frac-format)
3213 (let ((math-radix-explicit-format nil)
3214 (calc-frac-format nil))
3215 (math-format-number (nth 2 a))))))
3216 ((eq (car a) 'cplx)
3217 (if (math-zerop (nth 2 a))
3218 (math-format-number (nth 1 a))
3219 (if (null calc-complex-format)
3220 (concat "(" (math-format-number (nth 1 a))
3221 ", " (math-format-number (nth 2 a)) ")")
3222 (if (math-zerop (nth 1 a))
3223 (if (math-equal-int (nth 2 a) 1)
3224 (symbol-name calc-complex-format)
3225 (if (math-equal-int (nth 2 a) -1)
3226 (concat "-" (symbol-name calc-complex-format))
3227 (if prec
3228 (math-compose-expr (list '* (nth 2 a) '(cplx 0 1)) prec)
3229 (concat (math-format-number (nth 2 a)) " "
3230 (symbol-name calc-complex-format)))))
3231 (if prec
3232 (math-compose-expr (list (if (math-negp (nth 2 a)) '- '+)
3233 (nth 1 a)
3234 (list 'cplx 0 (math-abs (nth 2 a))))
3235 prec)
3236 (concat (math-format-number (nth 1 a))
3237 (if (math-negp (nth 2 a)) " - " " + ")
3238 (math-format-number
3239 (list 'cplx 0 (math-abs (nth 2 a))))))))))
3240 ((eq (car a) 'polar)
3241 (concat "(" (math-format-number (nth 1 a))
3242 "; " (math-format-number (nth 2 a)) ")"))
3243 ((eq (car a) 'hms)
3244 (if (math-negp a)
3245 (concat "-" (math-format-number (math-neg a)))
3246 (let ((calc-number-radix 10)
3247 (calc-leading-zeros nil)
3248 (calc-group-digits nil))
3249 (format calc-hms-format
3250 (let ((calc-frac-format '(":" nil)))
3251 (math-format-number (nth 1 a)))
3252 (let ((calc-frac-format '(":" nil)))
3253 (math-format-number (nth 2 a)))
3254 (math-format-number (nth 3 a))))))
3255 ((eq (car a) 'intv)
3256 (concat (if (memq (nth 1 a) '(0 1)) "(" "[")
3257 (math-format-number (nth 2 a))
3258 " .. "
3259 (math-format-number (nth 3 a))
3260 (if (memq (nth 1 a) '(0 2)) ")" "]")))
3261 ((eq (car a) 'sdev)
3262 (concat (math-format-number (nth 1 a))
3263 " +/- "
3264 (math-format-number (nth 2 a))))
3265 ((eq (car a) 'vec)
3266 (math-format-flat-expr a 0))
3267 (t (format "%s" a))))
3268
3269 (defun math-adjust-fraction (a)
3270 (if (nth 1 calc-frac-format)
3271 (progn
3272 (if (Math-integerp a) (setq a (list 'frac a 1)))
3273 (let ((g (math-quotient (nth 1 calc-frac-format)
3274 (math-gcd (nth 2 a)
3275 (nth 1 calc-frac-format)))))
3276 (list 'frac (math-mul (nth 1 a) g) (math-mul (nth 2 a) g))))
3277 a))
3278
3279 (defun math-format-bignum-fancy (a) ; [X L]
3280 (let ((str (cond ((= calc-number-radix 10)
3281 (math-format-bignum-decimal a))
3282 ((= calc-number-radix 2)
3283 (math-format-bignum-binary a))
3284 ((= calc-number-radix 8)
3285 (math-format-bignum-octal a))
3286 ((= calc-number-radix 16)
3287 (math-format-bignum-hex a))
3288 (t (math-format-bignum-radix a)))))
3289 (if calc-leading-zeros
3290 (let* ((calc-internal-prec 6)
3291 (digs (math-compute-max-digits (math-abs calc-word-size)
3292 calc-number-radix))
3293 (len (length str)))
3294 (if (< len digs)
3295 (setq str (concat (make-string (- digs len) ?0) str)))))
3296 (if calc-group-digits
3297 (let ((i (length str))
3298 (g (if (integerp calc-group-digits)
3299 (math-abs calc-group-digits)
3300 (if (memq calc-number-radix '(2 16)) 4 3))))
3301 (while (> i g)
3302 (setq i (- i g)
3303 str (concat (substring str 0 i)
3304 calc-group-char
3305 (substring str i))))
3306 str))
3307 (if (and (/= calc-number-radix 10)
3308 math-radix-explicit-format)
3309 (if calc-radix-formatter
3310 (funcall calc-radix-formatter calc-number-radix str)
3311 (format "%d#%s" calc-number-radix str))
3312 str)))
3313
3314
3315 (defun math-group-float (str) ; [X X]
3316 (let* ((pt (or (string-match "[^0-9a-zA-Z]" str) (length str)))
3317 (g (if (integerp calc-group-digits) (math-abs calc-group-digits) 3))
3318 (i pt))
3319 (if (and (integerp calc-group-digits) (< calc-group-digits 0))
3320 (while (< (setq i (+ (1+ i) g)) (length str))
3321 (setq str (concat (substring str 0 i)
3322 calc-group-char
3323 (substring str i))
3324 i (+ i (1- (length calc-group-char))))))
3325 (setq i pt)
3326 (while (> i g)
3327 (setq i (- i g)
3328 str (concat (substring str 0 i)
3329 calc-group-char
3330 (substring str i))))
3331 str))
3332
3333 ;;; Users can redefine this in their .emacs files.
3334 (defvar calc-keypad-user-menu nil
3335 "If non-nil, this describes an additional menu for calc-keypad.
3336 It should contain a list of three rows.
3337 Each row should be a list of six keys.
3338 Each key should be a list of a label string, plus a Calc command name spec.
3339 A command spec is a command name symbol, a keyboard macro string, a
3340 list containing a numeric entry string, or nil.
3341 A key may contain additional specs for Inverse, Hyperbolic, and Inv+Hyp.")
3342
3343 (run-hooks 'calc-ext-load-hook)
3344
3345 (provide 'calc-ext)
3346
3347 ;;; arch-tag: 1814ba7f-a390-49dc-9e25-a5adc205e97e
3348 ;;; calc-ext.el ends here