(calc-left-divide): New function.
[bpt/emacs.git] / lisp / calc / calc.el
1 ;;; calc.el --- the GNU Emacs calculator
2
3 ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004,
4 ;; 2005 Free Software Foundation, Inc.
5
6 ;; Author: David Gillespie <daveg@synaptics.com>
7 ;; Maintainer: Jay Belanger <belanger@truman.edu>
8 ;; Keywords: convenience, extensions
9 ;; Version: 2.1
10
11 ;; This file is part of GNU Emacs.
12
13 ;; GNU Emacs is distributed in the hope that it will be useful,
14 ;; but WITHOUT ANY WARRANTY. No author or distributor
15 ;; accepts responsibility to anyone for the consequences of using it
16 ;; or for whether it serves any particular purpose or works at all,
17 ;; unless he says so in writing. Refer to the GNU Emacs General Public
18 ;; License for full details.
19
20 ;; Everyone is granted permission to copy, modify and redistribute
21 ;; GNU Emacs, but only under the conditions described in the
22 ;; GNU Emacs General Public License. A copy of this license is
23 ;; supposed to have been given to you along with GNU Emacs so you
24 ;; can know your rights and responsibilities. It should be in a
25 ;; file named COPYING. Among other things, the copyright notice
26 ;; and this notice must be preserved on all copies.
27
28 ;;; Commentary:
29
30 ;; Calc is split into many files. This file is the main entry point.
31 ;; This file includes autoload commands for various other basic Calc
32 ;; facilities. The more advanced features are based in calc-ext, which
33 ;; in turn contains autoloads for the rest of the Calc files. This
34 ;; odd set of interactions is designed to make Calc's loading time
35 ;; be as short as possible when only simple calculations are needed.
36
37 ;; Original author's address:
38 ;; Dave Gillespie, daveg@synaptics.com, uunet!synaptx!daveg.
39 ;; Synaptics, Inc., 2698 Orchard Parkway, San Jose, CA 95134.
40 ;;
41 ;; The old address daveg@csvax.cs.caltech.edu will continue to
42 ;; work for the foreseeable future.
43 ;;
44 ;; Bug reports and suggestions are always welcome! (Type M-x
45 ;; report-calc-bug to send them).
46
47 ;; All functions, macros, and Lisp variables defined here begin with one
48 ;; of the prefixes "math", "Math", or "calc", with the exceptions of
49 ;; "full-calc", "full-calc-keypad", "another-calc", "quick-calc",
50 ;; "report-calc-bug", and "defmath". User-accessible variables begin
51 ;; with "var-".
52
53 ;;; TODO:
54
55 ;; Fix rewrite mechanism to do less gratuitous rearrangement of terms.
56 ;; Implement a pattern-based "refers" predicate.
57 ;;
58 ;; Make it possible to Undo a selection command.
59 ;; Figure out how to allow selecting rows of matrices.
60 ;; If cursor was in selection before, move it after j n, j p, j L, etc.
61 ;; Consider reimplementing calc-delete-selection using rewrites.
62 ;;
63 ;; Implement line-breaking in non-flat compositions (is this desirable?).
64 ;; Implement matrix formatting with multi-line components.
65 ;;
66 ;; Have "Z R" define a user command based on a set of rewrite rules.
67 ;; Support "incf" and "decf" in defmath definitions.
68 ;; Have defmath generate calls to calc-binary-op or calc-unary-op.
69 ;; Make some way to define algebraic functions using keyboard macros.
70 ;;
71 ;; Allow calc-word-size=0 => Common Lisp-style signed bitwise arithmetic.
72 ;; Consider digamma function (and thus arb. prec. Euler's gamma constant).
73 ;; May as well make continued-fractions stuff available to the user.
74 ;;
75 ;; How about matrix eigenvalues, SVD, pseudo-inverse, etc.?
76 ;; Should cache matrix inverses as well as decompositions.
77 ;; If dividing by a non-square matrix, use least-squares automatically.
78 ;; Consider supporting matrix exponentials.
79 ;;
80 ;; Have ninteg detect and work around singularities at the endpoints.
81 ;; Use an adaptive subdivision algorithm for ninteg.
82 ;; Provide nsum and nprod to go along with ninteg.
83 ;;
84 ;; Handle TeX-mode parsing of \matrix{ ... } where ... contains braces.
85 ;; Support AmS-TeX's \{d,t,}frac, \{d,t,}binom notations.
86 ;; Format and parse sums and products in Eqn and Math modes.
87 ;;
88 ;; Get math-read-big-expr to read sums, products, etc.
89 ;; Change calc-grab-region to use math-read-big-expr.
90 ;; Have a way to define functions using := in Embedded Mode.
91 ;;
92 ;; Support polar plotting with GNUPLOT.
93 ;; Make a calc-graph-histogram function.
94 ;;
95 ;; Replace hokey formulas for complex functions with formulas designed
96 ;; to minimize roundoff while maintaining the proper branch cuts.
97 ;; Test accuracy of advanced math functions over whole complex plane.
98 ;; Extend Bessel functions to provide arbitrary precision.
99 ;; Extend advanced math functions to handle error forms and intervals.
100 ;; Provide a better implementation for math-sin-cos-raw.
101 ;; Provide a better implementation for math-hypot.
102 ;; Provide a better implementation for math-make-frac.
103 ;; Provide a better implementation for calcFunc-prfac.
104 ;; Provide a better implementation for calcFunc-factor.
105 ;;
106 ;; Provide more examples in the tutorial section of the manual.
107 ;; Cover in the tutorial: simplification modes, declarations,
108 ;; bitwise stuff, selections, matrix mapping, financial functions.
109 ;; Provide more Lisp programming examples in the manual.
110 ;; Finish the Internals section of the manual (and bring it up to date).
111 ;;
112 ;; Tim suggests adding spreadsheet-like features.
113 ;; Implement language modes for Gnuplot, Lisp, Ada, APL, ...?
114 ;;
115 ;; For atan series, if x > tan(pi/12) (about 0.268) reduce using the identity
116 ;; atan(x) = atan((x * sqrt(3) - 1) / (sqrt(3) + x)) + pi/6.
117 ;;
118 ;; A better integration algorithm:
119 ;; Use breadth-first instead of depth-first search, as follows:
120 ;; The integral cache allows unfinished integrals in symbolic notation
121 ;; on the righthand side. An entry with no unfinished integrals on the
122 ;; RHS is "complete"; references to it elsewhere are replaced by the
123 ;; integrated value. More than one cache entry for the same integral
124 ;; may exist, though if one becomes complete, the others may be deleted.
125 ;; The integrator works by using every applicable rule (such as
126 ;; substitution, parts, linearity, etc.) to generate possible righthand
127 ;; sides, all of which are entered into the cache. Now, as long as the
128 ;; target integral is not complete (and the time limit has not run out)
129 ;; choose an incomplete integral from the cache and, for every integral
130 ;; appearing in its RHS's, add those integrals to the cache using the
131 ;; same substitition, parts, etc. rules. The cache should be organized
132 ;; as a priority queue, choosing the "simplest" incomplete integral at
133 ;; each step, or choosing randomly among equally simple integrals.
134 ;; Simplicity equals small size, and few steps removed from the original
135 ;; target integral. Note that when the integrator finishes, incomplete
136 ;; integrals can be left in the cache, so the algorithm can start where
137 ;; it left off if another similar integral is later requested.
138 ;; Breadth-first search would avoid the nagging problem of, e.g., whether
139 ;; to use parts or substitution first, and which decomposition is best.
140 ;; All are tried, and any path that diverges will quickly be put on the
141 ;; back burner by the priority queue.
142 ;; Note: Probably a good idea to call math-simplify-extended before
143 ;; measuring a formula's simplicity.
144
145 ;; From: "Robert J. Chassell" <bob@rattlesnake.com>
146 ;; Subject: Re: fix for `Cannot open load file: calc-alg-3'
147 ;; To: walters@debian.org
148 ;; Date: Sat, 24 Nov 2001 21:44:21 +0000 (UTC)
149 ;;
150 ;; Could you add logistic curve fitting to the current list?
151 ;;
152 ;; (I guess the key binding for a logistic curve would have to be `s'
153 ;; since a logistic curve is an `s' curve; both `l' and `L' are already
154 ;; taken for logarithms.)
155 ;;
156 ;; Here is the current list for curve fitting;
157 ;;
158 ;; `1'
159 ;; Linear or multilinear. a + b x + c y + d z.
160 ;;
161 ;; `2-9'
162 ;; Polynomials. a + b x + c x^2 + d x^3.
163 ;;
164 ;; `e'
165 ;; Exponential. a exp(b x) exp(c y).
166 ;;
167 ;; `E'
168 ;; Base-10 exponential. a 10^(b x) 10^(c y).
169 ;;
170 ;; `x'
171 ;; Exponential (alternate notation). exp(a + b x + c y).
172 ;;
173 ;; `X'
174 ;; Base-10 exponential (alternate). 10^(a + b x + c y).
175 ;;
176 ;; `l'
177 ;; Logarithmic. a + b ln(x) + c ln(y).
178 ;;
179 ;; `L'
180 ;; Base-10 logarithmic. a + b log10(x) + c log10(y).
181 ;;
182 ;; `^'
183 ;; General exponential. a b^x c^y.
184 ;;
185 ;; `p'
186 ;; Power law. a x^b y^c.
187 ;;
188 ;; `q'
189 ;; Quadratic. a + b (x-c)^2 + d (x-e)^2.
190 ;;
191 ;; `g'
192 ;; Gaussian. (a / b sqrt(2 pi)) exp(-0.5*((x-c)/b)^2).
193 ;;
194 ;;
195 ;; Logistic curves are used a great deal in ecology, and in predicting
196 ;; human actions, such as use of different kinds of energy in a country
197 ;; (wood, coal, oil, natural gas, etc.) or the number of scientific
198 ;; papers a person publishes, or the number of movies made.
199 ;;
200 ;; (The less information on which to base the curve, the higher the error
201 ;; rate. Theodore Modis ran some Monte Carlo simulations and produced
202 ;; what may be useful set of confidence levels for different amounts of
203 ;; initial information.)
204
205 ;;; Code:
206
207 (require 'calc-macs)
208
209 (defgroup calc nil
210 "GNU Calc."
211 :prefix "calc-"
212 :tag "Calc"
213 :group 'applications)
214
215 ;;;###autoload
216 (defcustom calc-settings-file
217 (convert-standard-filename "~/.calc.el")
218 "*File in which to record permanent settings."
219 :group 'calc
220 :type '(file))
221
222 (defcustom calc-language-alist
223 '((latex-mode . latex)
224 (tex-mode . tex)
225 (plain-tex-mode . tex)
226 (context-mode . tex)
227 (nroff-mode . eqn)
228 (pascal-mode . pascal)
229 (c-mode . c)
230 (c++-mode . c)
231 (fortran-mode . fortran)
232 (f90-mode . fortran))
233 "*Alist of major modes with appropriate Calc languages."
234 :group 'calc
235 :type '(alist :key-type (symbol :tag "Major mode")
236 :value-type (symbol :tag "Calc language")))
237
238 (defcustom calc-embedded-announce-formula
239 "%Embed\n\\(% .*\n\\)*"
240 "*A regular expression which is sure to be followed by a calc-embedded formula."
241 :group 'calc
242 :type '(regexp))
243
244 (defcustom calc-embedded-announce-formula-alist
245 '((c++-mode . "//Embed\n\\(// .*\n\\)*")
246 (c-mode . "/\\*Embed\\*/\n\\(/\\* .*\\*/\n\\)*")
247 (f90-mode . "!Embed\n\\(! .*\n\\)*")
248 (fortran-mode . "C Embed\n\\(C .*\n\\)*")
249 (html-helper-mode . "<!-- Embed -->\n\\(<!-- .* -->\n\\)*")
250 (html-mode . "<!-- Embed -->\n\\(<!-- .* -->\n\\)*")
251 (nroff-mode . "\\\\\"Embed\n\\(\\\\\" .*\n\\)*")
252 (pascal-mode . "{Embed}\n\\({.*}\n\\)*")
253 (sgml-mode . "<!-- Embed -->\n\\(<!-- .* -->\n\\)*")
254 (xml-mode . "<!-- Embed -->\n\\(<!-- .* -->\n\\)*")
255 (texinfo-mode . "@c Embed\n\\(@c .*\n\\)*"))
256 "*Alist of major modes with appropriate values for `calc-embedded-announce-formula'."
257 :group 'calc
258 :type '(alist :key-type (symbol :tag "Major mode")
259 :value-type (regexp :tag "Regexp to announce formula")))
260
261 (defcustom calc-embedded-open-formula
262 "\\`\\|^\n\\|\\$\\$?\\|\\\\\\[\\|^\\\\begin[^{].*\n\\|^\\\\begin{.*[^x]}.*\n\\|^@.*\n\\|^\\.EQ.*\n\\|\\\\(\\|^%\n\\|^\\.\\\\\"\n"
263 "*A regular expression for the opening delimiter of a formula used by calc-embedded."
264 :group 'calc
265 :type '(regexp))
266
267 (defcustom calc-embedded-close-formula
268 "\\'\\|\n$\\|\\$\\$?\\|\\\\]\\|^\\\\end[^{].*\n\\|^\\\\end{.*[^x]}.*\n\\|^@.*\n\\|^\\.EN.*\n\\|\\\\)\\|\n%\n\\|^\\.\\\\\"\n"
269 "*A regular expression for the closing delimiter of a formula used by calc-embedded."
270 :group 'calc
271 :type '(regexp))
272
273 (defcustom calc-embedded-open-close-formula-alist
274 nil
275 "*Alist of major modes with pairs of formula delimiters used by calc-embedded."
276 :group 'calc
277 :type '(alist :key-type (symbol :tag "Major mode")
278 :value-type (list (regexp :tag "Opening formula delimiter")
279 (regexp :tag "Closing formula delimiter"))))
280
281 (defcustom calc-embedded-open-word
282 "^\\|[^-+0-9.eE]"
283 "*A regular expression for the opening delimiter of a formula used by calc-embedded-word."
284 :group 'calc
285 :type '(regexp))
286
287 (defcustom calc-embedded-close-word
288 "$\\|[^-+0-9.eE]"
289 "*A regular expression for the closing delimiter of a formula used by calc-embedded-word."
290 :group 'calc
291 :type '(regexp))
292
293 (defcustom calc-embedded-open-close-word-alist
294 nil
295 "*Alist of major modes with pairs of word delimiters used by calc-embedded."
296 :group 'calc
297 :type '(alist :key-type (symbol :tag "Major mode")
298 :value-type (list (regexp :tag "Opening word delimiter")
299 (regexp :tag "Closing word delimiter"))))
300
301 (defcustom calc-embedded-open-plain
302 "%%% "
303 "*A string which is the opening delimiter for a \"plain\" formula.
304 If calc-show-plain mode is enabled, this is inserted at the front of
305 each formula."
306 :group 'calc
307 :type '(string))
308
309 (defcustom calc-embedded-close-plain
310 " %%%\n"
311 "*A string which is the closing delimiter for a \"plain\" formula.
312 See calc-embedded-open-plain."
313 :group 'calc
314 :type '(string))
315
316 (defcustom calc-embedded-open-close-plain-alist
317 '((c++-mode "// %% " " %%\n")
318 (c-mode "/* %% " " %% */\n")
319 (f90-mode "! %% " " %%\n")
320 (fortran-mode "C %% " " %%\n")
321 (html-helper-mode "<!-- %% " " %% -->\n")
322 (html-mode "<!-- %% " " %% -->\n")
323 (nroff-mode "\\\" %% " " %%\n")
324 (pascal-mode "{%% " " %%}\n")
325 (sgml-mode "<!-- %% " " %% -->\n")
326 (xml-mode "<!-- %% " " %% -->\n")
327 (texinfo-mode "@c %% " " %%\n"))
328 "*Alist of major modes with pairs of delimiters for \"plain\" formulas."
329 :group 'calc
330 :type '(alist :key-type (symbol :tag "Major mode")
331 :value-type (list (string :tag "Opening \"plain\" delimiter")
332 (string :tag "Closing \"plain\" delimiter"))))
333
334 (defcustom calc-embedded-open-new-formula
335 "\n\n"
336 "*A string which is inserted at front of formula by calc-embedded-new-formula."
337 :group 'calc
338 :type '(string))
339
340 (defcustom calc-embedded-close-new-formula
341 "\n\n"
342 "*A string which is inserted at end of formula by calc-embedded-new-formula."
343 :group 'calc
344 :type '(string))
345
346 (defcustom calc-embedded-open-close-new-formula-alist
347 nil
348 "*Alist of major modes with pairs of new formula delimiters used by calc-embedded."
349 :group 'calc
350 :type '(alist :key-type (symbol :tag "Major mode")
351 :value-type (list (string :tag "Opening new formula delimiter")
352 (string :tag "Closing new formula delimiter"))))
353
354 (defcustom calc-embedded-open-mode
355 "% "
356 "*A string which should precede calc-embedded mode annotations.
357 This is not required to be present for user-written mode annotations."
358 :group 'calc
359 :type '(string))
360
361 (defcustom calc-embedded-close-mode
362 "\n"
363 "*A string which should follow calc-embedded mode annotations.
364 This is not required to be present for user-written mode annotations."
365 :group 'calc
366 :type '(string))
367
368 (defcustom calc-embedded-open-close-mode-alist
369 '((c++-mode "// " "\n")
370 (c-mode "/* " " */\n")
371 (f90-mode "! " "\n")
372 (fortran-mode "C " "\n")
373 (html-helper-mode "<!-- " " -->\n")
374 (html-mode "<!-- " " -->\n")
375 (nroff-mode "\\\" " "\n")
376 (pascal-mode "{ " " }\n")
377 (sgml-mode "<!-- " " -->\n")
378 (xml-mode "<!-- " " -->\n")
379 (texinfo-mode "@c " "\n"))
380 "*Alist of major modes with pairs of strings to delimit annotations."
381 :group 'calc
382 :type '(alist :key-type (symbol :tag "Major mode")
383 :value-type (list (string :tag "Opening annotation delimiter")
384 (string :tag "Closing annotation delimiter"))))
385
386 (defcustom calc-gnuplot-name
387 "gnuplot"
388 "*Name of GNUPLOT program, for calc-graph features."
389 :group 'calc
390 :type '(string))
391
392 (defcustom calc-gnuplot-plot-command
393 nil
394 "*Name of command for displaying GNUPLOT output; %s = file name to print."
395 :group 'calc
396 :type '(choice (string) (sexp)))
397
398 (defcustom calc-gnuplot-print-command
399 "lp %s"
400 "*Name of command for printing GNUPLOT output; %s = file name to print."
401 :group 'calc
402 :type '(choice (string) (sexp)))
403
404 (defvar calc-bug-address "belanger@truman.edu"
405 "Address of the maintainer of Calc, for use by `report-calc-bug'.")
406
407 (defvar calc-scan-for-dels t
408 "If t, scan keymaps to find all DEL-like keys.
409 if nil, only DEL itself is mapped to calc-pop.")
410
411 (defvar calc-stack '((top-of-stack 1 nil))
412 "Calculator stack.
413 Entries are 3-lists: Formula, Height (in lines), Selection (or nil).")
414
415 (defvar calc-stack-top 1
416 "Index into `calc-stack' of \"top\" of stack.
417 This is 1 unless `calc-truncate-stack' has been used.")
418
419 (defvar calc-display-sci-high 0
420 "Floating-point numbers with this positive exponent or higher above the
421 current precision are displayed in scientific notation in calc-mode.")
422
423 (defvar calc-display-sci-low -3
424 "Floating-point numbers with this negative exponent or lower are displayed
425 scientific notation in calc-mode.")
426
427 (defvar calc-other-modes nil
428 "List of used-defined strings to append to Calculator mode line.")
429
430 (defvar calc-Y-help-msgs nil
431 "List of strings for Y prefix help.")
432
433 (defvar calc-loaded-settings-file nil
434 "t if `calc-settings-file' has been loaded yet.")
435
436
437 (defvar calc-mode-var-list '()
438 "List of variables used in customizing GNU Calc.")
439
440 (defmacro defcalcmodevar (var defval &optional doc)
441 `(progn
442 (defvar ,var ,defval ,doc)
443 (add-to-list 'calc-mode-var-list (list (quote ,var) ,defval))))
444
445 (defun calc-mode-var-list-restore-default-values ()
446 (mapcar (function (lambda (v) (set (car v) (nth 1 v))))
447 calc-mode-var-list))
448
449 (defun calc-mode-var-list-restore-saved-values ()
450 (let ((newvarlist '()))
451 (save-excursion
452 (let (pos
453 (file (substitute-in-file-name calc-settings-file)))
454 (when (and
455 (file-regular-p file)
456 (set-buffer (find-file-noselect file))
457 (goto-char (point-min))
458 (search-forward ";;; Mode settings stored by Calc" nil t)
459 (progn
460 (forward-line 1)
461 (setq pos (point))
462 (search-forward "\n;;; End of mode settings" nil t)))
463 (beginning-of-line)
464 (calc-mode-var-list-restore-default-values)
465 (eval-region pos (point))
466 (let ((varlist calc-mode-var-list))
467 (while varlist
468 (let ((var (car varlist)))
469 (setq newvarlist
470 (cons (list (car var) (symbol-value (car var)))
471 newvarlist)))
472 (setq varlist (cdr varlist)))))))
473 (if newvarlist
474 (mapcar (function (lambda (v) (set (car v) (nth 1 v))))
475 newvarlist)
476 (calc-mode-var-list-restore-default-values))))
477
478 (defcalcmodevar calc-always-load-extensions nil
479 "If non-nil, load the calc-ext module automatically when calc is loaded.")
480
481 (defcalcmodevar calc-line-numbering t
482 "If non-nil, display line numbers in Calculator stack.")
483
484 (defcalcmodevar calc-line-breaking t
485 "If non-nil, break long values across multiple lines in Calculator stack.")
486
487 (defcalcmodevar calc-display-just nil
488 "If nil, stack display is left-justified.
489 If `right', stack display is right-justified.
490 If `center', stack display is centered.")
491
492 (defcalcmodevar calc-display-origin nil
493 "Horizontal origin of displayed stack entries.
494 In left-justified mode, this is effectively indentation. (Default 0).
495 In right-justified mode, this is effectively window width.
496 In centered mode, center of stack entry is placed here.")
497
498 (defcalcmodevar calc-number-radix 10
499 "Radix for entry and display of numbers in calc-mode, 2-36.")
500
501 (defcalcmodevar calc-leading-zeros nil
502 "If non-nil, leading zeros are provided to pad integers to calc-word-size.")
503
504 (defcalcmodevar calc-group-digits nil
505 "If non-nil, group digits in large displayed integers by inserting spaces.
506 If an integer, group that many digits at a time.
507 If t, use 4 for binary and hex, 3 otherwise.")
508
509 (defcalcmodevar calc-group-char ","
510 "The character (in the form of a string) to be used for grouping digits.
511 This is used only when calc-group-digits mode is on.")
512
513 (defcalcmodevar calc-point-char "."
514 "The character (in the form of a string) to be used as a decimal point.")
515
516 (defcalcmodevar calc-frac-format '(":" nil)
517 "Format of displayed fractions; a string of one or two of \":\" or \"/\".")
518
519 (defcalcmodevar calc-prefer-frac nil
520 "If non-nil, prefer fractional over floating-point results.")
521
522 (defcalcmodevar calc-hms-format "%s@ %s' %s\""
523 "Format of displayed hours-minutes-seconds angles, a format string.
524 String must contain three %s marks for hours, minutes, seconds respectively.")
525
526 (defcalcmodevar calc-date-format '((H ":" mm C SS pp " ")
527 Www " " Mmm " " D ", " YYYY)
528 "Format of displayed date forms.")
529
530 (defcalcmodevar calc-float-format '(float 0)
531 "Format to use for display of floating-point numbers in calc-mode.
532 Must be a list of one of the following forms:
533 (float 0) Floating point format, display full precision.
534 (float N) N > 0: Floating point format, at most N significant figures.
535 (float -N) -N < 0: Floating point format, calc-internal-prec - N figs.
536 (fix N) N >= 0: Fixed point format, N places after decimal point.
537 (sci 0) Scientific notation, full precision.
538 (sci N) N > 0: Scientific notation, N significant figures.
539 (sci -N) -N < 0: Scientific notation, calc-internal-prec - N figs.
540 (eng 0) Engineering notation, full precision.
541 (eng N) N > 0: Engineering notation, N significant figures.
542 (eng -N) -N < 0: Engineering notation, calc-internal-prec - N figs.")
543
544 (defcalcmodevar calc-full-float-format '(float 0)
545 "Format to use when full precision must be displayed.")
546
547 (defcalcmodevar calc-complex-format nil
548 "Format to use for display of complex numbers in calc-mode. Must be one of:
549 nil Use (x, y) form.
550 i Use x + yi form.
551 j Use x + yj form.")
552
553 (defcalcmodevar calc-complex-mode 'cplx
554 "Preferred form, either `cplx' or `polar', for complex numbers.")
555
556 (defcalcmodevar calc-infinite-mode nil
557 "If nil, 1 / 0 is left unsimplified.
558 If 0, 1 / 0 is changed to inf (zeros are considered positive).
559 Otherwise, 1 / 0 is changed to uinf (undirected infinity).")
560
561 (defcalcmodevar calc-display-strings nil
562 "If non-nil, display vectors of byte-sized integers as strings.")
563
564 (defcalcmodevar calc-matrix-just 'center
565 "If nil, vector elements are left-justified.
566 If `right', vector elements are right-justified.
567 If `center', vector elements are centered.")
568
569 (defcalcmodevar calc-break-vectors nil
570 "If non-nil, display vectors one element per line.")
571
572 (defcalcmodevar calc-full-vectors t
573 "If non-nil, display long vectors in full. If nil, use abbreviated form.")
574
575 (defcalcmodevar calc-full-trail-vectors t
576 "If non-nil, display long vectors in full in the trail.")
577
578 (defcalcmodevar calc-vector-commas ","
579 "If non-nil, separate elements of displayed vectors with this string.")
580
581 (defcalcmodevar calc-vector-brackets "[]"
582 "If non-nil, surround displayed vectors with these characters.")
583
584 (defcalcmodevar calc-matrix-brackets '(R O)
585 "A list of code-letter symbols that control \"big\" matrix display.
586 If `R' is present, display inner brackets for matrices.
587 If `O' is present, display outer brackets for matrices (above/below).
588 If `C' is present, display outer brackets for matrices (centered).")
589
590 (defcalcmodevar calc-language nil
591 "Language or format for entry and display of stack values. Must be one of:
592 nil Use standard Calc notation.
593 flat Use standard Calc notation, one-line format.
594 big Display formulas in 2-d notation (enter w/std notation).
595 unform Use unformatted display: add(a, mul(b,c)).
596 c Use C language notation.
597 pascal Use Pascal language notation.
598 fortran Use Fortran language notation.
599 tex Use TeX notation.
600 latex Use LaTeX notation.
601 eqn Use eqn notation.
602 math Use Mathematica(tm) notation.
603 maple Use Maple notation.")
604
605 (defcalcmodevar calc-language-option nil
606 "Numeric prefix argument for the command that set `calc-language'.")
607
608 (defcalcmodevar calc-left-label ""
609 "Label to display at left of formula.")
610
611 (defcalcmodevar calc-right-label ""
612 "Label to display at right of formula.")
613
614 (defcalcmodevar calc-word-size 32
615 "Minimum number of bits per word, if any, for binary operations in calc-mode.")
616
617 (defcalcmodevar calc-previous-modulo nil
618 "Most recently used value of M in a modulo form.")
619
620 (defcalcmodevar calc-simplify-mode nil
621 "Type of simplification applied to results.
622 If `none', results are not simplified when pushed on the stack.
623 If `num', functions are simplified only when args are constant.
624 If nil, only fast simplifications are applied.
625 If `binary', `math-clip' is applied if appropriate.
626 If `alg', `math-simplify' is applied.
627 If `ext', `math-simplify-extended' is applied.
628 If `units', `math-simplify-units' is applied.")
629
630 (defcalcmodevar calc-auto-recompute t
631 "If non-nil, recompute evalto's automatically when necessary.")
632
633 (defcalcmodevar calc-display-raw nil
634 "If non-nil, display shows unformatted Lisp exprs. (For debugging)")
635
636 (defcalcmodevar calc-internal-prec 12
637 "Number of digits of internal precision for calc-mode calculations.")
638
639 (defcalcmodevar calc-angle-mode 'deg
640 "If deg, angles are in degrees; if rad, angles are in radians.
641 If hms, angles are in degrees-minutes-seconds.")
642
643 (defcalcmodevar calc-algebraic-mode nil
644 "If non-nil, numeric entry accepts whole algebraic expressions.
645 If nil, algebraic expressions must be preceded by \"'\".")
646
647 (defcalcmodevar calc-incomplete-algebraic-mode nil
648 "Like calc-algebraic-mode except only affects ( and [ keys.")
649
650 (defcalcmodevar calc-symbolic-mode nil
651 "If non-nil, inexact numeric computations like sqrt(2) are postponed.
652 If nil, computations on numbers always yield numbers where possible.")
653
654 (defcalcmodevar calc-matrix-mode nil
655 "If `matrix', variables are assumed to be matrix-valued.
656 If a number, variables are assumed to be NxN matrices.
657 If `sqmatrix', variables are assumed to be square matrices of an unspecified size.
658 If `scalar', variables are assumed to be scalar-valued.
659 If nil, symbolic math routines make no assumptions about variables.")
660
661 (defcalcmodevar calc-shift-prefix nil
662 "If non-nil, shifted letter keys are prefix keys rather than normal meanings.")
663
664 (defcalcmodevar calc-window-height 7
665 "Initial height of Calculator window.")
666
667 (defcalcmodevar calc-display-trail t
668 "If non-nil, M-x calc creates a window to display Calculator trail.")
669
670 (defcalcmodevar calc-show-selections t
671 "If non-nil, selected sub-formulas are shown by obscuring rest of formula.
672 If nil, selected sub-formulas are highlighted by obscuring the sub-formulas.")
673
674 (defcalcmodevar calc-use-selections t
675 "If non-nil, commands operate only on selected portions of formulas.
676 If nil, selections displayed but ignored.")
677
678 (defcalcmodevar calc-assoc-selections t
679 "If non-nil, selection hides deep structure of associative formulas.")
680
681 (defcalcmodevar calc-display-working-message 'lots
682 "If non-nil, display \"Working...\" for potentially slow Calculator commands.")
683
684 (defcalcmodevar calc-auto-why 'maybe
685 "If non-nil, automatically execute a \"why\" command to explain odd results.")
686
687 (defcalcmodevar calc-timing nil
688 "If non-nil, display timing information on each slow command.")
689
690 (defcalcmodevar calc-mode-save-mode 'local)
691
692 (defcalcmodevar calc-standard-date-formats
693 '("N"
694 "<H:mm:SSpp >Www Mmm D, YYYY"
695 "D Mmm YYYY<, h:mm:SS>"
696 "Www Mmm BD< hh:mm:ss> YYYY"
697 "M/D/Y< H:mm:SSpp>"
698 "D.M.Y< h:mm:SS>"
699 "M-D-Y< H:mm:SSpp>"
700 "D-M-Y< h:mm:SS>"
701 "j<, h:mm:SS>"
702 "YYddd< hh:mm:ss>"))
703
704 (defcalcmodevar calc-autorange-units nil)
705
706 (defcalcmodevar calc-was-keypad-mode nil)
707
708 (defcalcmodevar calc-full-mode nil)
709
710 (defcalcmodevar calc-user-parse-tables nil)
711
712 (defcalcmodevar calc-gnuplot-default-device "default")
713
714 (defcalcmodevar calc-gnuplot-default-output "STDOUT")
715
716 (defcalcmodevar calc-gnuplot-print-device "postscript")
717
718 (defcalcmodevar calc-gnuplot-print-output "auto")
719
720 (defcalcmodevar calc-gnuplot-geometry nil)
721
722 (defcalcmodevar calc-graph-default-resolution 15)
723
724 (defcalcmodevar calc-graph-default-resolution-3d 5)
725
726 (defcalcmodevar calc-invocation-macro nil)
727
728 (defcalcmodevar calc-show-banner t
729 "*If non-nil, show a friendly greeting above the stack.")
730
731 (defconst calc-local-var-list '(calc-stack
732 calc-stack-top
733 calc-undo-list
734 calc-redo-list
735 calc-always-load-extensions
736 calc-mode-save-mode
737 calc-display-raw
738 calc-line-numbering
739 calc-line-breaking
740 calc-display-just
741 calc-display-origin
742 calc-left-label
743 calc-right-label
744 calc-auto-why
745 calc-algebraic-mode
746 calc-incomplete-algebraic-mode
747 calc-symbolic-mode
748 calc-matrix-mode
749 calc-inverse-flag
750 calc-hyperbolic-flag
751 calc-keep-args-flag
752 calc-angle-mode
753 calc-number-radix
754 calc-leading-zeros
755 calc-group-digits
756 calc-group-char
757 calc-point-char
758 calc-frac-format
759 calc-prefer-frac
760 calc-hms-format
761 calc-date-format
762 calc-standard-date-formats
763 calc-float-format
764 calc-full-float-format
765 calc-complex-format
766 calc-matrix-just
767 calc-full-vectors
768 calc-full-trail-vectors
769 calc-break-vectors
770 calc-vector-commas
771 calc-vector-brackets
772 calc-matrix-brackets
773 calc-complex-mode
774 calc-infinite-mode
775 calc-display-strings
776 calc-simplify-mode
777 calc-auto-recompute
778 calc-autorange-units
779 calc-show-plain
780 calc-show-selections
781 calc-use-selections
782 calc-assoc-selections
783 calc-word-size
784 calc-internal-prec))
785
786 (defvar calc-mode-hook nil
787 "Hook run when entering calc-mode.")
788
789 (defvar calc-trail-mode-hook nil
790 "Hook run when entering calc-trail-mode.")
791
792 (defvar calc-start-hook nil
793 "Hook run when calc is started.")
794
795 (defvar calc-end-hook nil
796 "Hook run when calc is quit.")
797
798 (defvar calc-load-hook nil
799 "Hook run when calc.el is loaded.")
800
801 (defvar calc-window-hook nil
802 "Hook called to create the Calc window.")
803
804 (defvar calc-trail-window-hook nil
805 "Hook called to create the Calc trail window.")
806
807 (defvar calc-embedded-new-buffer-hook nil
808 "Hook run when starting embedded mode in a new buffer.")
809
810 (defvar calc-embedded-new-formula-hook nil
811 "Hook run when starting embedded mode in a new formula.")
812
813 (defvar calc-embedded-mode-hook nil
814 "Hook run when starting embedded mode.")
815
816 ;; Verify that Calc is running on the right kind of system.
817 (defvar calc-emacs-type-lucid (not (not (string-match "Lucid" emacs-version))))
818
819 ;; Set up the standard keystroke (M-#) to run the Calculator, if that key
820 ;; has not yet been bound to anything. For best results, the user should
821 ;; do this before Calc is even loaded, so that M-# can auto-load Calc.
822 (or (global-key-binding "\e#") (global-set-key "\e#" 'calc-dispatch))
823
824 ;; Set up the autoloading linkage.
825 (let ((name (and (fboundp 'calc-dispatch)
826 (eq (car-safe (symbol-function 'calc-dispatch)) 'autoload)
827 (nth 1 (symbol-function 'calc-dispatch))))
828 (p load-path))
829
830 ;; If Calc files exist on the load-path, we're all set.
831 (while (and p (not (file-exists-p
832 (expand-file-name "calc-misc.elc" (car p)))))
833 (setq p (cdr p)))
834 (or p
835
836 ;; If Calc is autoloaded using a path name, look there for Calc files.
837 ;; This works for both relative ("calc/calc.elc") and absolute paths.
838 (and name (file-name-directory name)
839 (let ((p2 load-path)
840 (name2 (concat (file-name-directory name)
841 "calc-misc.elc")))
842 (while (and p2 (not (file-exists-p
843 (expand-file-name name2 (car p2)))))
844 (setq p2 (cdr p2)))
845 (when p2
846 (setq load-path (nconc load-path
847 (list
848 (directory-file-name
849 (file-name-directory
850 (expand-file-name
851 name (car p2))))))))))))
852
853 ;; The following modes use specially-formatted data.
854 (put 'calc-mode 'mode-class 'special)
855 (put 'calc-trail-mode 'mode-class 'special)
856
857 ;; Define "inexact-result" as an e-lisp error symbol.
858 (put 'inexact-result 'error-conditions '(error inexact-result calc-error))
859 (put 'inexact-result 'error-message "Calc internal error (inexact-result)")
860
861 ;; Define "math-overflow" and "math-underflow" as e-lisp error symbols.
862 (put 'math-overflow 'error-conditions '(error math-overflow calc-error))
863 (put 'math-overflow 'error-message "Floating-point overflow occurred")
864 (put 'math-underflow 'error-conditions '(error math-underflow calc-error))
865 (put 'math-underflow 'error-message "Floating-point underflow occurred")
866
867 (defconst calc-version "2.1")
868 (defvar calc-trail-pointer nil) ; "Current" entry in trail buffer.
869 (defvar calc-trail-overlay nil) ; Value of overlay-arrow-string.
870 (defvar calc-undo-list nil) ; List of previous operations for undo.
871 (defvar calc-redo-list nil) ; List of recent undo operations.
872 (defvar calc-main-buffer nil) ; Pointer to Calculator buffer.
873 (defvar calc-trail-buffer nil) ; Pointer to Calc Trail buffer.
874 (defvar calc-why nil) ; Explanations of most recent errors.
875 (defvar calc-next-why nil)
876 (defvar calc-inverse-flag nil
877 "If non-nil, next operation is Inverse.")
878 (defvar calc-hyperbolic-flag nil
879 "If non-nil, next operation is Hyperbolic.")
880 (defvar calc-keep-args-flag nil
881 "If non-nil, next operation should not remove its arguments from stack.")
882 (defvar calc-function-open "("
883 "Open-parenthesis string for function call notation.")
884 (defvar calc-function-close ")"
885 "Close-parenthesis string for function call notation.")
886 (defvar calc-language-output-filter nil
887 "Function through which to pass strings after formatting.")
888 (defvar calc-language-input-filter nil
889 "Function through which to pass strings before parsing.")
890 (defvar calc-radix-formatter nil
891 "Formatting function used for non-decimal numbers.")
892
893 (defvar calc-last-kill nil) ; Last number killed in calc-mode.
894 (defvar calc-previous-alg-entry nil) ; Previous algebraic entry.
895 (defvar calc-dollar-values nil) ; Values to be used for '$'.
896 (defvar calc-dollar-used nil) ; Highest order of '$' that occurred.
897 (defvar calc-hashes-used nil) ; Highest order of '#' that occurred.
898 (defvar calc-quick-prev-results nil) ; Previous results from Quick Calc.
899 (defvar calc-said-hello nil) ; Has welcome message been said yet?
900 (defvar calc-executing-macro nil) ; Kbd macro executing from "K" key.
901 (defvar calc-any-selections nil) ; Nil means no selections present.
902 (defvar calc-help-phase 0) ; Count of consecutive "?" keystrokes.
903 (defvar calc-full-help-flag nil) ; Executing calc-full-help?
904 (defvar calc-refresh-count 0) ; Count of calc-refresh calls.
905 (defvar calc-display-dirty nil)
906 (defvar calc-prepared-composition nil)
907 (defvar calc-selection-cache-default-entry nil)
908 (defvar calc-embedded-info nil)
909 (defvar calc-embedded-active nil)
910 (defvar calc-standalone-flag nil)
911 (defvar var-EvalRules nil)
912 (defvar math-eval-rules-cache-tag t)
913 (defvar math-radix-explicit-format t)
914 (defvar math-expr-function-mapping nil)
915 (defvar math-expr-special-function-mapping nil)
916 (defvar math-expr-variable-mapping nil)
917 (defvar math-read-expr-quotes nil)
918 (defvar math-working-step nil)
919 (defvar math-working-step-2 nil)
920 (defvar var-i '(special-const (math-imaginary 1)))
921 (defvar var-pi '(special-const (math-pi)))
922 (defvar var-e '(special-const (math-e)))
923 (defvar var-phi '(special-const (math-phi)))
924 (defvar var-gamma '(special-const (math-gamma-const)))
925 (defvar var-Modes '(special-const (math-get-modes-vec)))
926
927 (mapcar (lambda (v) (or (boundp v) (set v nil)))
928 calc-local-var-list)
929
930 (defvar calc-mode-map
931 (let ((map (make-keymap)))
932 (suppress-keymap map t)
933 (define-key map "+" 'calc-plus)
934 (define-key map "-" 'calc-minus)
935 (define-key map "*" 'calc-times)
936 (define-key map "/" 'calc-divide)
937 (define-key map "%" 'calc-mod)
938 (define-key map "&" 'calc-inv)
939 (define-key map "^" 'calc-power)
940 (define-key map "\M-%" 'calc-percent)
941 (define-key map "e" 'calcDigit-start)
942 (define-key map "i" 'calc-info)
943 (define-key map "n" 'calc-change-sign)
944 (define-key map "q" 'calc-quit)
945 (define-key map "Y" 'nil)
946 (define-key map "Y?" 'calc-shift-Y-prefix-help)
947 (define-key map "?" 'calc-help)
948 (define-key map " " 'calc-enter)
949 (define-key map "'" 'calc-algebraic-entry)
950 (define-key map "$" 'calc-auto-algebraic-entry)
951 (define-key map "\"" 'calc-auto-algebraic-entry)
952 (define-key map "\t" 'calc-roll-down)
953 (define-key map "\M-\t" 'calc-roll-up)
954 (define-key map "\C-m" 'calc-enter)
955 (define-key map "\M-\C-m" 'calc-last-args-stub)
956 (define-key map "\C-j" 'calc-over)
957
958 (mapc (lambda (x) (define-key map (char-to-string x) 'undefined))
959 "lOW")
960 (mapc (lambda (x) (define-key map (char-to-string x) 'calc-missing-key))
961 (concat "ABCDEFGHIJKLMNPQRSTUVXZabcdfghjkmoprstuvwxyz"
962 ":\\|!()[]<>{},;=~`\C-k\M-k\C-w\M-w\C-y\C-_"))
963 (mapc (lambda (x) (define-key map (char-to-string x) 'calcDigit-start))
964 "_0123456789.#@")
965 map))
966
967 (defvar calc-digit-map
968 (let ((map (make-keymap)))
969 (if calc-emacs-type-lucid
970 (map-keymap (function
971 (lambda (keys bind)
972 (define-key map keys
973 (if (eq bind 'undefined)
974 'undefined 'calcDigit-nondigit))))
975 calc-mode-map)
976 (let ((cmap (nth 1 calc-mode-map))
977 (dmap (nth 1 map))
978 (i 0))
979 (while (< i 128)
980 (aset dmap i
981 (if (eq (aref cmap i) 'undefined)
982 'undefined 'calcDigit-nondigit))
983 (setq i (1+ i)))))
984 (mapcar (lambda (x) (define-key map (char-to-string x) 'calcDigit-key))
985 "_0123456789.e+-:n#@oh'\"mspM")
986 (mapcar (lambda (x) (define-key map (char-to-string x) 'calcDigit-letter))
987 "abcdfgijklqrtuvwxyzABCDEFGHIJKLNOPQRSTUVWXYZ")
988 (define-key map "'" 'calcDigit-algebraic)
989 (define-key map "`" 'calcDigit-edit)
990 (define-key map "\C-g" 'abort-recursive-edit)
991 map))
992
993 (mapcar (lambda (x)
994 (condition-case err
995 (progn
996 (define-key calc-digit-map x 'calcDigit-backspace)
997 (define-key calc-mode-map x 'calc-pop)
998 (define-key calc-mode-map
999 (if (vectorp x)
1000 (if calc-emacs-type-lucid
1001 (if (= (length x) 1)
1002 (vector (if (consp (aref x 0))
1003 (cons 'meta (aref x 0))
1004 (list 'meta (aref x 0))))
1005 "\e\C-d")
1006 (vconcat "\e" x))
1007 (concat "\e" x))
1008 'calc-pop-above))
1009 (error nil)))
1010 (if calc-scan-for-dels
1011 (append (where-is-internal 'delete-backward-char global-map)
1012 (where-is-internal 'backward-delete-char global-map)
1013 '("\C-d"))
1014 '("\177" "\C-d")))
1015
1016 (defvar calc-dispatch-map
1017 (let ((map (make-keymap)))
1018 (mapcar (lambda (x)
1019 (define-key map (char-to-string (car x)) (cdr x))
1020 (when (string-match "abcdefhijklnopqrstuwxyz"
1021 (char-to-string (car x)))
1022 (define-key map (char-to-string (- (car x) ?a -1)) (cdr x)))
1023 (define-key map (format "\e%c" (car x)) (cdr x)))
1024 '( ( ?a . calc-embedded-activate )
1025 ( ?b . calc-big-or-small )
1026 ( ?c . calc )
1027 ( ?d . calc-embedded-duplicate )
1028 ( ?e . calc-embedded )
1029 ( ?f . calc-embedded-new-formula )
1030 ( ?g . calc-grab-region )
1031 ( ?h . calc-dispatch-help )
1032 ( ?i . calc-info )
1033 ( ?j . calc-embedded-select )
1034 ( ?k . calc-keypad )
1035 ( ?l . calc-load-everything )
1036 ( ?m . read-kbd-macro )
1037 ( ?n . calc-embedded-next )
1038 ( ?o . calc-other-window )
1039 ( ?p . calc-embedded-previous )
1040 ( ?q . quick-calc )
1041 ( ?r . calc-grab-rectangle )
1042 ( ?s . calc-info-summary )
1043 ( ?t . calc-tutorial )
1044 ( ?u . calc-embedded-update-formula )
1045 ( ?w . calc-embedded-word )
1046 ( ?x . calc-quit )
1047 ( ?y . calc-copy-to-buffer )
1048 ( ?z . calc-user-invocation )
1049 ( ?= . calc-embedded-update-formula )
1050 ( ?\' . calc-embedded-new-formula )
1051 ( ?\` . calc-embedded-edit )
1052 ( ?: . calc-grab-sum-down )
1053 ( ?_ . calc-grab-sum-across )
1054 ( ?0 . calc-reset )
1055 ( ?# . calc-same-interface )
1056 ( ?? . calc-dispatch-help ) ))
1057 map))
1058
1059 ;;;; (Autoloads here)
1060 (mapcar
1061 (lambda (x) (dolist (func (cdr x)) (autoload func (car x))))
1062 '(
1063
1064 ("calc-aent" calc-alg-digit-entry calc-alg-entry
1065 calc-check-user-syntax calc-do-alg-entry calc-do-calc-eval
1066 calc-do-quick-calc calc-match-user-syntax math-build-parse-table
1067 math-find-user-tokens math-read-expr-list math-read-exprs math-read-if
1068 math-read-token math-remove-dashes math-read-preprocess-string)
1069
1070 ("calc-embed" calc-do-embedded-activate)
1071
1072 ("calc-misc"
1073 calc-do-handle-whys calc-do-refresh calc-num-prefix-name
1074 calc-record-list calc-record-why calc-report-bug calc-roll-down-stack
1075 calc-roll-up-stack calc-temp-minibuffer-message calcFunc-floor
1076 calcFunc-inv calcFunc-trunc math-concat math-constp math-div2
1077 math-div2-bignum math-do-working math-evenp math-fixnatnump
1078 math-fixnump math-floor math-imod math-ipow math-looks-negp math-mod
1079 math-negp math-posp math-pow math-read-radix-digit math-reject-arg
1080 math-trunc math-zerop)))
1081
1082 (mapcar
1083 (lambda (x) (dolist (cmd (cdr x)) (autoload cmd (car x) nil t)))
1084 '(
1085
1086 ("calc-aent" calc-algebraic-entry calc-auto-algebraic-entry
1087 calcDigit-algebraic calcDigit-edit)
1088
1089 ("calc-misc" another-calc calc-big-or-small calc-dispatch-help
1090 calc-help calc-info calc-info-goto-node calc-info-summary calc-inv
1091 calc-last-args-stub
1092 calc-missing-key calc-mod calc-other-window calc-over calc-percent
1093 calc-pop-above calc-power calc-roll-down calc-roll-up
1094 calc-shift-Y-prefix-help calc-tutorial calcDigit-letter
1095 report-calc-bug)))
1096
1097
1098 ;;;###autoload (global-set-key "\e#" 'calc-dispatch)
1099
1100 ;;;###autoload
1101 (defun calc-dispatch (&optional arg)
1102 "Invoke the GNU Emacs Calculator. See `calc-dispatch-help' for details."
1103 (interactive "P")
1104 (sit-for echo-keystrokes)
1105 (condition-case err ; look for other keys bound to calc-dispatch
1106 (let ((keys (this-command-keys)))
1107 (unless (or (not (stringp keys))
1108 (string-match "\\`\C-u\\|\\`\e[-0-9#]\\|`[\M--\M-0-\M-9]" keys)
1109 (eq (lookup-key calc-dispatch-map keys) 'calc-same-interface))
1110 (when (and (string-match "\\`[\C-@-\C-_]" keys)
1111 (symbolp
1112 (lookup-key calc-dispatch-map (substring keys 0 1))))
1113 (define-key calc-dispatch-map (substring keys 0 1) nil))
1114 (define-key calc-dispatch-map keys 'calc-same-interface)))
1115 (error nil))
1116 (calc-do-dispatch arg))
1117
1118 (defvar calc-dispatch-help nil)
1119 (defun calc-do-dispatch (arg)
1120 (let ((key (calc-read-key-sequence
1121 (if calc-dispatch-help
1122 "Calc options: Calc, Keypad, Quick, Embed; eXit; Info, Tutorial; Grab; ?=more"
1123 (format "%s (Type ? for a list of Calc options)"
1124 (key-description (this-command-keys))))
1125 calc-dispatch-map)))
1126 (setq key (lookup-key calc-dispatch-map key))
1127 (message "")
1128 (if key
1129 (progn
1130 (or (commandp key) (require 'calc-ext))
1131 (call-interactively key))
1132 (beep))))
1133
1134 (defun calc-read-key-sequence (prompt map)
1135 (let ((prompt2 (format "%s " (key-description (this-command-keys))))
1136 (glob (current-global-map))
1137 (loc (current-local-map)))
1138 (or (input-pending-p) (message prompt))
1139 (let ((key (calc-read-key t)))
1140 (calc-unread-command (cdr key))
1141 (unwind-protect
1142 (progn
1143 (use-global-map map)
1144 (use-local-map nil)
1145 (read-key-sequence nil))
1146 (use-global-map glob)
1147 (use-local-map loc)))))
1148
1149 (defvar calc-alg-map) ; Defined in calc-ext.el
1150
1151 (defun calc-mode ()
1152 "Calculator major mode.
1153
1154 This is an RPN calculator featuring arbitrary-precision integer, rational,
1155 floating-point, complex, matrix, and symbolic arithmetic.
1156
1157 RPN calculation: 2 RET 3 + produces 5.
1158 Algebraic style: ' 2+3 RET produces 5.
1159
1160 Basic operators are +, -, *, /, ^, & (reciprocal), % (modulo), n (change-sign).
1161
1162 Press ? repeatedly for more complete help. Press `h i' to read the
1163 Calc manual on-line, `h s' to read the summary, or `h t' for the tutorial.
1164
1165 Notations: 3.14e6 3.14 * 10^6
1166 _23 negative number -23 (or type `23 n')
1167 17:3 the fraction 17/3
1168 5:2:3 the fraction 5 and 2/3
1169 16#12C the integer 12C base 16 = 300 base 10
1170 8#177:100 the fraction 177:100 base 8 = 127:64 base 10
1171 (2, 4) complex number 2 + 4i
1172 (2; 4) polar complex number (r; theta)
1173 [1, 2, 3] vector ([[1, 2], [3, 4]] is a matrix)
1174 [1 .. 4) semi-open interval, 1 <= x < 4
1175 2 +/- 3 (p key) number with mean 2, standard deviation 3
1176 2 mod 3 (M key) number 2 computed modulo 3
1177 <1 jan 91> Date form (enter using ' key)
1178
1179
1180 \\{calc-mode-map}
1181 "
1182 (interactive)
1183 (mapcar (function
1184 (lambda (v) (set-default v (symbol-value v)))) calc-local-var-list)
1185 (kill-all-local-variables)
1186 (use-local-map (if (eq calc-algebraic-mode 'total)
1187 (progn (require 'calc-ext) calc-alg-map) calc-mode-map))
1188 (mapcar (function (lambda (v) (make-local-variable v))) calc-local-var-list)
1189 (make-local-variable 'overlay-arrow-position)
1190 (make-local-variable 'overlay-arrow-string)
1191 (add-hook 'change-major-mode-hook 'font-lock-defontify nil t)
1192 (setq truncate-lines t)
1193 (setq buffer-read-only t)
1194 (setq major-mode 'calc-mode)
1195 (setq mode-name "Calculator")
1196 (setq calc-stack-top (length (or (memq (assq 'top-of-stack calc-stack)
1197 calc-stack)
1198 (setq calc-stack (list (list 'top-of-stack
1199 1 nil))))))
1200 (setq calc-stack-top (- (length calc-stack) calc-stack-top -1))
1201 (or calc-loaded-settings-file
1202 (null calc-settings-file)
1203 (equal calc-settings-file user-init-file)
1204 (progn
1205 (setq calc-loaded-settings-file t)
1206 (load (file-name-sans-extension calc-settings-file) t))) ; t = missing-ok
1207 (let ((p command-line-args))
1208 (while p
1209 (and (equal (car p) "-f")
1210 (string-match "calc" (nth 1 p))
1211 (string-match "full" (nth 1 p))
1212 (setq calc-standalone-flag t))
1213 (setq p (cdr p))))
1214 (run-mode-hooks 'calc-mode-hook)
1215 (calc-refresh t)
1216 (calc-set-mode-line)
1217 (calc-check-defines))
1218
1219 (defvar calc-check-defines 'calc-check-defines) ; suitable for run-hooks
1220 (defun calc-check-defines ()
1221 (if (symbol-plist 'calc-define)
1222 (let ((plist (copy-sequence (symbol-plist 'calc-define))))
1223 (while (and plist (null (nth 1 plist)))
1224 (setq plist (cdr (cdr plist))))
1225 (if plist
1226 (save-excursion
1227 (require 'calc-ext)
1228 (require 'calc-macs)
1229 (set-buffer "*Calculator*")
1230 (while plist
1231 (put 'calc-define (car plist) nil)
1232 (eval (nth 1 plist))
1233 (setq plist (cdr (cdr plist))))
1234 ;; See if this has added any more calc-define properties.
1235 (calc-check-defines))
1236 (setplist 'calc-define nil)))))
1237
1238 (defun calc-trail-mode (&optional buf)
1239 "Calc Trail mode.
1240 This mode is used by the *Calc Trail* buffer, which records all results
1241 obtained by the GNU Emacs Calculator.
1242
1243 Calculator commands beginning with the `t' key are used to manipulate
1244 the Trail.
1245
1246 This buffer uses the same key map as the *Calculator* buffer; calculator
1247 commands given here will actually operate on the *Calculator* stack."
1248 (interactive)
1249 (fundamental-mode)
1250 (use-local-map calc-mode-map)
1251 (setq major-mode 'calc-trail-mode)
1252 (setq mode-name "Calc Trail")
1253 (setq truncate-lines t)
1254 (setq buffer-read-only t)
1255 (make-local-variable 'overlay-arrow-position)
1256 (make-local-variable 'overlay-arrow-string)
1257 (when buf
1258 (set (make-local-variable 'calc-main-buffer) buf))
1259 (when (= (buffer-size) 0)
1260 (let ((buffer-read-only nil))
1261 (insert (propertize (concat "Emacs Calculator v" calc-version
1262 " by Dave Gillespie\n")
1263 'font-lock-face 'italic))))
1264 (run-mode-hooks 'calc-trail-mode-hook))
1265
1266 (defun calc-create-buffer ()
1267 (set-buffer (get-buffer-create "*Calculator*"))
1268 (or (eq major-mode 'calc-mode)
1269 (calc-mode))
1270 (setq max-lisp-eval-depth (max max-lisp-eval-depth 1000))
1271 (when calc-always-load-extensions
1272 (require 'calc-ext))
1273 (when calc-language
1274 (require 'calc-ext)
1275 (calc-set-language calc-language calc-language-option t)))
1276
1277 ;;;###autoload
1278 (defun calc (&optional arg full-display interactive)
1279 "The Emacs Calculator. Full documentation is listed under \"calc-mode\"."
1280 (interactive "P\ni\np")
1281 (if arg
1282 (unless (eq arg 0)
1283 (require 'calc-ext)
1284 (if (= (prefix-numeric-value arg) -1)
1285 (calc-grab-region (region-beginning) (region-end) nil)
1286 (when (= (prefix-numeric-value arg) -2)
1287 (calc-keypad))))
1288 (when (get-buffer-window "*Calc Keypad*")
1289 (calc-keypad)
1290 (set-buffer (window-buffer (selected-window))))
1291 (if (eq major-mode 'calc-mode)
1292 (calc-quit)
1293 (let ((oldbuf (current-buffer)))
1294 (calc-create-buffer)
1295 (setq calc-was-keypad-mode nil)
1296 (if (or (eq full-display t)
1297 (and (null full-display) calc-full-mode))
1298 (switch-to-buffer (current-buffer) t)
1299 (if (get-buffer-window (current-buffer))
1300 (select-window (get-buffer-window (current-buffer)))
1301 (if calc-window-hook
1302 (run-hooks 'calc-window-hook)
1303 (let ((w (get-largest-window)))
1304 (if (and pop-up-windows
1305 (> (window-height w)
1306 (+ window-min-height calc-window-height 2)))
1307 (progn
1308 (setq w (split-window w
1309 (- (window-height w)
1310 calc-window-height 2)
1311 nil))
1312 (set-window-buffer w (current-buffer))
1313 (select-window w))
1314 (pop-to-buffer (current-buffer)))))))
1315 (save-excursion
1316 (set-buffer (calc-trail-buffer))
1317 (and calc-display-trail
1318 (= (window-width) (frame-width))
1319 (calc-trail-display 1 t)))
1320 (message "Welcome to the GNU Emacs Calculator! Press `?' or `h' for help, `q' to quit")
1321 (run-hooks 'calc-start-hook)
1322 (and (windowp full-display)
1323 (window-point full-display)
1324 (select-window full-display))
1325 (calc-check-defines)
1326 (when (and calc-said-hello interactive)
1327 (sit-for 2)
1328 (message ""))
1329 (setq calc-said-hello t)))))
1330
1331 ;;;###autoload
1332 (defun full-calc (&optional interactive)
1333 "Invoke the Calculator and give it a full-sized window."
1334 (interactive "p")
1335 (calc nil t interactive))
1336
1337 (defun calc-same-interface (arg)
1338 "Invoke the Calculator using the most recent interface (calc or calc-keypad)."
1339 (interactive "P")
1340 (if (and (equal (buffer-name) "*Gnuplot Trail*")
1341 (> (recursion-depth) 0))
1342 (exit-recursive-edit)
1343 (if (eq major-mode 'calc-edit-mode)
1344 (calc-edit-finish arg)
1345 (if calc-was-keypad-mode
1346 (calc-keypad)
1347 (calc arg calc-full-mode t)))))
1348
1349 (defun calc-quit (&optional non-fatal interactive)
1350 (interactive "i\np")
1351 (and calc-standalone-flag (not non-fatal)
1352 (save-buffers-kill-emacs nil))
1353 (if (and (equal (buffer-name) "*Gnuplot Trail*")
1354 (> (recursion-depth) 0))
1355 (exit-recursive-edit))
1356 (if (eq major-mode 'calc-edit-mode)
1357 (calc-edit-cancel)
1358 (if (and interactive
1359 calc-embedded-info
1360 (eq (current-buffer) (aref calc-embedded-info 0)))
1361 (calc-embedded nil)
1362 (unless (eq major-mode 'calc-mode)
1363 (calc-create-buffer))
1364 (run-hooks 'calc-end-hook)
1365 (setq calc-undo-list nil calc-redo-list nil)
1366 (mapcar (function (lambda (v) (set-default v (symbol-value v))))
1367 calc-local-var-list)
1368 (let ((buf (current-buffer))
1369 (win (get-buffer-window (current-buffer)))
1370 (kbuf (get-buffer "*Calc Keypad*")))
1371 (delete-windows-on (calc-trail-buffer))
1372 (if (and win
1373 (< (window-height win) (1- (frame-height)))
1374 (= (window-width win) (frame-width)) ; avoid calc-keypad
1375 (not (get-buffer-window "*Calc Keypad*")))
1376 (setq calc-window-height (- (window-height win) 2)))
1377 (progn
1378 (delete-windows-on buf)
1379 (delete-windows-on kbuf))
1380 (bury-buffer buf)
1381 (bury-buffer calc-trail-buffer)
1382 (and kbuf (bury-buffer kbuf))))))
1383
1384 ;;;###autoload
1385 (defun quick-calc ()
1386 "Do a quick calculation in the minibuffer without invoking full Calculator."
1387 (interactive)
1388 (calc-do-quick-calc))
1389
1390 ;;;###autoload
1391 (defun calc-eval (str &optional separator &rest args)
1392 "Do a quick calculation and return the result as a string.
1393 Return value will either be the formatted result in string form,
1394 or a list containing a character position and an error message in string form."
1395 (calc-do-calc-eval str separator args))
1396
1397 ;;;###autoload
1398 (defun calc-keypad (&optional interactive)
1399 "Invoke the Calculator in \"visual keypad\" mode.
1400 This is most useful in the X window system.
1401 In this mode, click on the Calc \"buttons\" using the left mouse button.
1402 Or, position the cursor manually and do M-x calc-keypad-press."
1403 (interactive "p")
1404 (require 'calc-ext)
1405 (calc-do-keypad calc-full-mode interactive))
1406
1407 ;;;###autoload
1408 (defun full-calc-keypad (&optional interactive)
1409 "Invoke the Calculator in full-screen \"visual keypad\" mode.
1410 See calc-keypad for details."
1411 (interactive "p")
1412 (require 'calc-ext)
1413 (calc-do-keypad t interactive))
1414
1415
1416 (defvar calc-aborted-prefix nil)
1417 (defvar calc-start-time nil)
1418 (defvar calc-command-flags)
1419 (defvar calc-final-point-line)
1420 (defvar calc-final-point-column)
1421 ;;; Note that modifications to this function may break calc-pass-errors.
1422 (defun calc-do (do-body &optional do-slow)
1423 (calc-check-defines)
1424 (let* ((calc-command-flags nil)
1425 (calc-start-time (and calc-timing (not calc-start-time)
1426 (require 'calc-ext)
1427 (current-time-string)))
1428 (gc-cons-threshold (max gc-cons-threshold
1429 (if calc-timing 2000000 100000)))
1430 calc-final-point-line calc-final-point-column)
1431 (setq calc-aborted-prefix "")
1432 (unwind-protect
1433 (condition-case err
1434 (save-excursion
1435 (if calc-embedded-info
1436 (calc-embedded-select-buffer)
1437 (calc-select-buffer))
1438 (and (eq calc-algebraic-mode 'total)
1439 (require 'calc-ext)
1440 (use-local-map calc-alg-map))
1441 (when (and do-slow calc-display-working-message)
1442 (message "Working...")
1443 (calc-set-command-flag 'clear-message))
1444 (funcall do-body)
1445 (setq calc-aborted-prefix nil)
1446 (when (memq 'renum-stack calc-command-flags)
1447 (calc-renumber-stack))
1448 (when (memq 'clear-message calc-command-flags)
1449 (message "")))
1450 (error
1451 (if (and (eq (car err) 'error)
1452 (stringp (nth 1 err))
1453 (string-match "max-specpdl-size\\|max-lisp-eval-depth"
1454 (nth 1 err)))
1455 (error "Computation got stuck or ran too long. Type `M' to increase the limit")
1456 (setq calc-aborted-prefix nil)
1457 (signal (car err) (cdr err)))))
1458 (when calc-aborted-prefix
1459 (calc-record "<Aborted>" calc-aborted-prefix))
1460 (and calc-start-time
1461 (let* ((calc-internal-prec 12)
1462 (calc-date-format nil)
1463 (end-time (current-time-string))
1464 (time (if (equal calc-start-time end-time)
1465 0
1466 (math-sub
1467 (calcFunc-unixtime (math-parse-date end-time) 0)
1468 (calcFunc-unixtime (math-parse-date calc-start-time)
1469 0)))))
1470 (if (math-lessp 1 time)
1471 (calc-record time "(t)"))))
1472 (or (memq 'no-align calc-command-flags)
1473 (eq major-mode 'calc-trail-mode)
1474 (calc-align-stack-window))
1475 (and (memq 'position-point calc-command-flags)
1476 (if (eq major-mode 'calc-mode)
1477 (progn
1478 (goto-line calc-final-point-line)
1479 (move-to-column calc-final-point-column))
1480 (save-current-buffer
1481 (calc-select-buffer)
1482 (goto-line calc-final-point-line)
1483 (move-to-column calc-final-point-column))))
1484 (unless (memq 'keep-flags calc-command-flags)
1485 (save-excursion
1486 (calc-select-buffer)
1487 (setq calc-inverse-flag nil
1488 calc-hyperbolic-flag nil
1489 calc-keep-args-flag nil)))
1490 (when (memq 'do-edit calc-command-flags)
1491 (switch-to-buffer (get-buffer-create "*Calc Edit*")))
1492 (calc-set-mode-line)
1493 (when calc-embedded-info
1494 (calc-embedded-finish-command))))
1495 (identity nil)) ; allow a GC after timing is done
1496
1497
1498 (defun calc-set-command-flag (f)
1499 (unless (memq f calc-command-flags)
1500 (setq calc-command-flags (cons f calc-command-flags))))
1501
1502 (defun calc-select-buffer ()
1503 (or (eq major-mode 'calc-mode)
1504 (if calc-main-buffer
1505 (set-buffer calc-main-buffer)
1506 (let ((buf (get-buffer "*Calculator*")))
1507 (if buf
1508 (set-buffer buf)
1509 (error "Calculator buffer not available"))))))
1510
1511 (defun calc-cursor-stack-index (&optional index)
1512 (goto-char (point-max))
1513 (forward-line (- (calc-substack-height (or index 1)))))
1514
1515 (defun calc-stack-size ()
1516 (- (length calc-stack) calc-stack-top))
1517
1518 (defun calc-substack-height (n)
1519 (let ((sum 0)
1520 (stack calc-stack))
1521 (setq n (+ n calc-stack-top))
1522 (while (and (> n 0) stack)
1523 (setq sum (+ sum (nth 1 (car stack)))
1524 n (1- n)
1525 stack (cdr stack)))
1526 sum))
1527
1528 (defun calc-set-mode-line ()
1529 (save-excursion
1530 (calc-select-buffer)
1531 (let* ((fmt (car calc-float-format))
1532 (figs (nth 1 calc-float-format))
1533 (new-mode-string
1534 (format "Calc%s%s: %d %s %-14s"
1535 (if calc-embedded-info "Embed" "")
1536 (if (and (> (length (buffer-name)) 12)
1537 (equal (substring (buffer-name) 0 12)
1538 "*Calculator*"))
1539 (substring (buffer-name) 12)
1540 "")
1541 calc-internal-prec
1542 (capitalize (symbol-name calc-angle-mode))
1543 (concat
1544
1545 ;; Input-related modes
1546 (if (eq calc-algebraic-mode 'total) "Alg* "
1547 (if calc-algebraic-mode "Alg "
1548 (if calc-incomplete-algebraic-mode "Alg[( " "")))
1549
1550 ;; Computational modes
1551 (if calc-symbolic-mode "Symb " "")
1552 (cond ((eq calc-matrix-mode 'matrix) "Matrix ")
1553 ((integerp calc-matrix-mode)
1554 (format "Matrix%d " calc-matrix-mode))
1555 ((eq calc-matrix-mode 'sqmatrix) "SqMatrix ")
1556 ((eq calc-matrix-mode 'scalar) "Scalar ")
1557 (t ""))
1558 (if (eq calc-complex-mode 'polar) "Polar " "")
1559 (if calc-prefer-frac "Frac " "")
1560 (cond ((null calc-infinite-mode) "")
1561 ((eq calc-infinite-mode 1) "+Inf ")
1562 (t "Inf "))
1563 (cond ((eq calc-simplify-mode 'none) "NoSimp ")
1564 ((eq calc-simplify-mode 'num) "NumSimp ")
1565 ((eq calc-simplify-mode 'binary)
1566 (format "BinSimp%d " calc-word-size))
1567 ((eq calc-simplify-mode 'alg) "AlgSimp ")
1568 ((eq calc-simplify-mode 'ext) "ExtSimp ")
1569 ((eq calc-simplify-mode 'units) "UnitSimp ")
1570 (t ""))
1571
1572 ;; Display modes
1573 (cond ((= calc-number-radix 10) "")
1574 ((= calc-number-radix 2) "Bin ")
1575 ((= calc-number-radix 8) "Oct ")
1576 ((= calc-number-radix 16) "Hex ")
1577 (t (format "Radix%d " calc-number-radix)))
1578 (if calc-leading-zeros "Zero " "")
1579 (cond ((null calc-language) "")
1580 ((eq calc-language 'tex) "TeX ")
1581 ((eq calc-language 'latex) "LaTeX ")
1582 (t (concat
1583 (capitalize (symbol-name calc-language))
1584 " ")))
1585 (cond ((eq fmt 'float)
1586 (if (zerop figs) "" (format "Norm%d " figs)))
1587 ((eq fmt 'fix) (format "Fix%d " figs))
1588 ((eq fmt 'sci)
1589 (if (zerop figs) "Sci " (format "Sci%d " figs)))
1590 ((eq fmt 'eng)
1591 (if (zerop figs) "Eng " (format "Eng%d " figs))))
1592 (cond ((not calc-display-just)
1593 (if calc-display-origin
1594 (format "Left%d " calc-display-origin) ""))
1595 ((eq calc-display-just 'right)
1596 (if calc-display-origin
1597 (format "Right%d " calc-display-origin)
1598 "Right "))
1599 (t
1600 (if calc-display-origin
1601 (format "Center%d " calc-display-origin)
1602 "Center ")))
1603 (cond ((integerp calc-line-breaking)
1604 (format "Wid%d " calc-line-breaking))
1605 (calc-line-breaking "")
1606 (t "Wide "))
1607
1608 ;; Miscellaneous other modes/indicators
1609 (if calc-assoc-selections "" "Break ")
1610 (cond ((eq calc-mode-save-mode 'save) "Save ")
1611 ((not calc-embedded-info) "")
1612 ((eq calc-mode-save-mode 'local) "Local ")
1613 ((eq calc-mode-save-mode 'edit) "LocEdit ")
1614 ((eq calc-mode-save-mode 'perm) "LocPerm ")
1615 ((eq calc-mode-save-mode 'global) "Global ")
1616 (t ""))
1617 (if calc-auto-recompute "" "Manual ")
1618 (if (and (fboundp 'calc-gnuplot-alive)
1619 (calc-gnuplot-alive)) "Graph " "")
1620 (if (and calc-embedded-info
1621 (> (calc-stack-size) 0)
1622 (calc-top 1 'sel)) "Sel " "")
1623 (if calc-display-dirty "Dirty " "")
1624 (if calc-inverse-flag "Inv " "")
1625 (if calc-hyperbolic-flag "Hyp " "")
1626 (if calc-keep-args-flag "Keep " "")
1627 (if (/= calc-stack-top 1) "Narrow " "")
1628 (apply 'concat calc-other-modes)))))
1629 (if (equal new-mode-string mode-line-buffer-identification)
1630 nil
1631 (setq mode-line-buffer-identification new-mode-string)
1632 (set-buffer-modified-p (buffer-modified-p))
1633 (and calc-embedded-info (calc-embedded-mode-line-change))))))
1634
1635 (defun calc-align-stack-window ()
1636 (if (eq major-mode 'calc-mode)
1637 (progn
1638 (let ((win (get-buffer-window (current-buffer))))
1639 (if win
1640 (progn
1641 (calc-cursor-stack-index 0)
1642 (vertical-motion (- 2 (window-height win)))
1643 (set-window-start win (point)))))
1644 (calc-cursor-stack-index 0)
1645 (if (looking-at " *\\.$")
1646 (goto-char (1- (match-end 0)))))
1647 (save-excursion
1648 (calc-select-buffer)
1649 (calc-align-stack-window))))
1650
1651 (defun calc-check-stack (n)
1652 (if (> n (calc-stack-size))
1653 (error "Too few elements on stack"))
1654 (if (< n 0)
1655 (error "Invalid argument")))
1656
1657 (defun calc-push-list (vals &optional m sels)
1658 (while vals
1659 (if calc-executing-macro
1660 (calc-push-list-in-macro vals m sels)
1661 (save-excursion
1662 (calc-select-buffer)
1663 (let* ((val (car vals))
1664 (entry (list val 1 (car sels)))
1665 (mm (+ (or m 1) calc-stack-top)))
1666 (calc-cursor-stack-index (1- (or m 1)))
1667 (if (> mm 1)
1668 (setcdr (nthcdr (- mm 2) calc-stack)
1669 (cons entry (nthcdr (1- mm) calc-stack)))
1670 (setq calc-stack (cons entry calc-stack)))
1671 (let ((buffer-read-only nil))
1672 (insert (math-format-stack-value entry) "\n"))
1673 (calc-record-undo (list 'push mm))
1674 (calc-set-command-flag 'renum-stack))))
1675 (setq vals (cdr vals)
1676 sels (cdr sels))))
1677
1678 (defun calc-pop-push-list (n vals &optional m sels)
1679 (if (and calc-any-selections (null sels))
1680 (calc-replace-selections n vals m)
1681 (calc-pop-stack n m sels)
1682 (calc-push-list vals m sels)))
1683
1684 (defun calc-pop-push-record-list (n prefix vals &optional m sels)
1685 (or (and (consp vals)
1686 (or (integerp (car vals))
1687 (consp (car vals))))
1688 (and vals (setq vals (list vals)
1689 sels (and sels (list sels)))))
1690 (calc-check-stack (+ n (or m 1) -1))
1691 (if prefix
1692 (if (cdr vals)
1693 (calc-record-list vals prefix)
1694 (calc-record (car vals) prefix)))
1695 (calc-pop-push-list n vals m sels))
1696
1697 (defun calc-enter-result (n prefix vals &optional m)
1698 (setq calc-aborted-prefix prefix)
1699 (if (and (consp vals)
1700 (or (integerp (car vals))
1701 (consp (car vals))))
1702 (setq vals (mapcar 'calc-normalize vals))
1703 (setq vals (calc-normalize vals)))
1704 (or (and (consp vals)
1705 (or (integerp (car vals))
1706 (consp (car vals))))
1707 (setq vals (list vals)))
1708 (if (equal vals '((nil)))
1709 (setq vals nil))
1710 (calc-pop-push-record-list n prefix vals m)
1711 (calc-handle-whys))
1712
1713 (defun calc-normalize (val)
1714 (if (memq calc-simplify-mode '(nil none num))
1715 (math-normalize val)
1716 (require 'calc-ext)
1717 (calc-normalize-fancy val)))
1718
1719 (defun calc-handle-whys ()
1720 (if calc-next-why
1721 (calc-do-handle-whys)))
1722
1723
1724 (defun calc-pop-stack (&optional n m sel-ok) ; pop N objs at level M of stack.
1725 (or n (setq n 1))
1726 (or m (setq m 1))
1727 (or calc-keep-args-flag
1728 (let ((mm (+ m calc-stack-top)))
1729 (if (and calc-any-selections (not sel-ok)
1730 (calc-top-selected n m))
1731 (calc-sel-error))
1732 (if calc-executing-macro
1733 (calc-pop-stack-in-macro n mm)
1734 (calc-record-undo (list 'pop mm (calc-top-list n m 'full)))
1735 (save-excursion
1736 (calc-select-buffer)
1737 (let ((buffer-read-only nil))
1738 (if (> mm 1)
1739 (progn
1740 (calc-cursor-stack-index (1- m))
1741 (let ((bot (point)))
1742 (calc-cursor-stack-index (+ n m -1))
1743 (delete-region (point) bot))
1744 (setcdr (nthcdr (- mm 2) calc-stack)
1745 (nthcdr (+ n mm -1) calc-stack)))
1746 (calc-cursor-stack-index n)
1747 (setq calc-stack (nthcdr n calc-stack))
1748 (delete-region (point) (point-max))))
1749 (calc-set-command-flag 'renum-stack))))))
1750
1751 (defvar sel-mode)
1752 (defun calc-get-stack-element (x)
1753 (cond ((eq sel-mode 'entry)
1754 x)
1755 ((eq sel-mode 'sel)
1756 (nth 2 x))
1757 ((or (null (nth 2 x))
1758 (eq sel-mode 'full)
1759 (not calc-use-selections))
1760 (car x))
1761 (sel-mode
1762 (calc-sel-error))
1763 (t (nth 2 x))))
1764
1765 ;; Get the Nth element of the stack (N=1 is the top element).
1766 (defun calc-top (&optional n sel-mode)
1767 (or n (setq n 1))
1768 (calc-check-stack n)
1769 (calc-get-stack-element (nth (+ n calc-stack-top -1) calc-stack)))
1770
1771 (defun calc-top-n (&optional n sel-mode) ; in case precision has changed
1772 (math-check-complete (calc-normalize (calc-top n sel-mode))))
1773
1774 (defun calc-top-list (&optional n m sel-mode)
1775 (or n (setq n 1))
1776 (or m (setq m 1))
1777 (calc-check-stack (+ n m -1))
1778 (and (> n 0)
1779 (let ((top (copy-sequence (nthcdr (+ m calc-stack-top -1)
1780 calc-stack))))
1781 (setcdr (nthcdr (1- n) top) nil)
1782 (nreverse (mapcar 'calc-get-stack-element top)))))
1783
1784 (defun calc-top-list-n (&optional n m sel-mode)
1785 (mapcar 'math-check-complete
1786 (mapcar 'calc-normalize (calc-top-list n m sel-mode))))
1787
1788
1789 (defun calc-renumber-stack ()
1790 (if calc-line-numbering
1791 (save-excursion
1792 (calc-cursor-stack-index 0)
1793 (let ((lnum 1)
1794 (buffer-read-only nil)
1795 (stack (nthcdr calc-stack-top calc-stack)))
1796 (if (re-search-forward "^[0-9]+[:*]" nil t)
1797 (progn
1798 (beginning-of-line)
1799 (while (re-search-forward "^[0-9]+[:*]" nil t)
1800 (let ((buffer-read-only nil))
1801 (beginning-of-line)
1802 (delete-char 4)
1803 (insert " ")))
1804 (calc-cursor-stack-index 0)))
1805 (while (re-search-backward "^[0-9]+[:*]" nil t)
1806 (delete-char 4)
1807 (if (> lnum 999)
1808 (insert (format "%03d%s" (% lnum 1000)
1809 (if (and (nth 2 (car stack))
1810 calc-use-selections) "*" ":")))
1811 (let ((prefix (int-to-string lnum)))
1812 (insert prefix (if (and (nth 2 (car stack))
1813 calc-use-selections) "*" ":")
1814 (make-string (- 3 (length prefix)) 32))))
1815 (beginning-of-line)
1816 (setq lnum (1+ lnum)
1817 stack (cdr stack))))))
1818 (and calc-embedded-info (calc-embedded-stack-change)))
1819
1820 (defvar calc-any-evaltos nil)
1821 (defun calc-refresh (&optional align)
1822 (interactive)
1823 (and (eq major-mode 'calc-mode)
1824 (not calc-executing-macro)
1825 (let* ((buffer-read-only nil)
1826 (save-point (point))
1827 (save-mark (condition-case err (mark) (error nil)))
1828 (save-aligned (looking-at "\\.$"))
1829 (thing calc-stack)
1830 (calc-any-evaltos nil))
1831 (setq calc-any-selections nil)
1832 (erase-buffer)
1833 (when calc-show-banner
1834 (insert (propertize "--- Emacs Calculator Mode ---\n"
1835 'font-lock-face 'italic)))
1836 (while thing
1837 (goto-char (point-min))
1838 (when calc-show-banner
1839 (forward-line 1))
1840 (insert (math-format-stack-value (car thing)) "\n")
1841 (setq thing (cdr thing)))
1842 (calc-renumber-stack)
1843 (if calc-display-dirty
1844 (calc-wrapper (setq calc-display-dirty nil)))
1845 (and calc-any-evaltos calc-auto-recompute
1846 (calc-wrapper (calc-refresh-evaltos)))
1847 (if (or align save-aligned)
1848 (calc-align-stack-window)
1849 (goto-char save-point))
1850 (if save-mark (set-mark save-mark))))
1851 (and calc-embedded-info (not (eq major-mode 'calc-mode))
1852 (save-excursion
1853 (set-buffer (aref calc-embedded-info 1))
1854 (calc-refresh align)))
1855 (setq calc-refresh-count (1+ calc-refresh-count)))
1856
1857 ;;;; The Calc Trail buffer.
1858
1859 (defun calc-check-trail-aligned ()
1860 (save-excursion
1861 (let ((win (get-buffer-window (current-buffer))))
1862 (and win
1863 (pos-visible-in-window-p (1- (point-max)) win)))))
1864
1865 (defun calc-trail-buffer ()
1866 (and (or (null calc-trail-buffer)
1867 (null (buffer-name calc-trail-buffer)))
1868 (save-excursion
1869 (setq calc-trail-buffer (get-buffer-create "*Calc Trail*"))
1870 (let ((buf (or (and (not (eq major-mode 'calc-mode))
1871 (get-buffer "*Calculator*"))
1872 (current-buffer))))
1873 (set-buffer calc-trail-buffer)
1874 (or (eq major-mode 'calc-trail-mode)
1875 (calc-trail-mode buf)))))
1876 (or (and calc-trail-pointer
1877 (eq (marker-buffer calc-trail-pointer) calc-trail-buffer))
1878 (save-excursion
1879 (set-buffer calc-trail-buffer)
1880 (goto-line 2)
1881 (setq calc-trail-pointer (point-marker))))
1882 calc-trail-buffer)
1883
1884 (defun calc-record (val &optional prefix)
1885 (setq calc-aborted-prefix nil)
1886 (or calc-executing-macro
1887 (let* ((mainbuf (current-buffer))
1888 (buf (calc-trail-buffer))
1889 (calc-display-raw nil)
1890 (calc-can-abbrev-vectors t)
1891 (fval (if val
1892 (if (stringp val)
1893 val
1894 (math-showing-full-precision
1895 (math-format-flat-expr val 0)))
1896 "")))
1897 (save-excursion
1898 (set-buffer buf)
1899 (let ((aligned (calc-check-trail-aligned))
1900 (buffer-read-only nil))
1901 (goto-char (point-max))
1902 (cond ((null prefix) (insert " "))
1903 ((and (> (length prefix) 4)
1904 (string-match " " prefix 4))
1905 (insert (substring prefix 0 4) " "))
1906 (t (insert (format "%4s " prefix))))
1907 (insert fval "\n")
1908 (let ((win (get-buffer-window buf)))
1909 (if (and aligned win (not (memq 'hold-trail calc-command-flags)))
1910 (calc-trail-here))
1911 (goto-char (1- (point-max))))))))
1912 val)
1913
1914
1915 (defun calc-trail-display (flag &optional no-refresh interactive)
1916 (interactive "P\ni\np")
1917 (let ((win (get-buffer-window (calc-trail-buffer))))
1918 (if (setq calc-display-trail
1919 (not (if flag (memq flag '(nil 0)) win)))
1920 (if (null win)
1921 (progn
1922 (if calc-trail-window-hook
1923 (run-hooks 'calc-trail-window-hook)
1924 (let ((w (split-window nil (/ (* (window-width) 2) 3) t)))
1925 (set-window-buffer w calc-trail-buffer)))
1926 (calc-wrapper
1927 (setq overlay-arrow-string calc-trail-overlay
1928 overlay-arrow-position calc-trail-pointer)
1929 (or no-refresh
1930 (if interactive
1931 (calc-do-refresh)
1932 (calc-refresh))))))
1933 (if win
1934 (progn
1935 (delete-window win)
1936 (calc-wrapper
1937 (or no-refresh
1938 (if interactive
1939 (calc-do-refresh)
1940 (calc-refresh))))))))
1941 calc-trail-buffer)
1942
1943 (defun calc-trail-here ()
1944 (interactive)
1945 (if (eq major-mode 'calc-trail-mode)
1946 (progn
1947 (beginning-of-line)
1948 (if (bobp)
1949 (forward-line 1)
1950 (if (eobp)
1951 (forward-line -1)))
1952 (if (or (bobp) (eobp))
1953 (setq overlay-arrow-position nil) ; trail is empty
1954 (set-marker calc-trail-pointer (point) (current-buffer))
1955 (setq calc-trail-overlay (concat (buffer-substring (point)
1956 (+ (point) 4))
1957 ">")
1958 overlay-arrow-string calc-trail-overlay
1959 overlay-arrow-position calc-trail-pointer)
1960 (forward-char 4)
1961 (let ((win (get-buffer-window (current-buffer))))
1962 (if win
1963 (save-excursion
1964 (forward-line (/ (window-height win) 2))
1965 (forward-line (- 1 (window-height win)))
1966 (set-window-start win (point))
1967 (set-window-point win (+ calc-trail-pointer 4))
1968 (set-buffer calc-main-buffer)
1969 (setq overlay-arrow-string calc-trail-overlay
1970 overlay-arrow-position calc-trail-pointer))))))
1971 (error "Not in Calc Trail buffer")))
1972
1973
1974
1975
1976 ;;;; The Undo list.
1977
1978 (defun calc-record-undo (rec)
1979 (or calc-executing-macro
1980 (if (memq 'undo calc-command-flags)
1981 (setq calc-undo-list (cons (cons rec (car calc-undo-list))
1982 (cdr calc-undo-list)))
1983 (setq calc-undo-list (cons (list rec) calc-undo-list)
1984 calc-redo-list nil)
1985 (calc-set-command-flag 'undo))))
1986
1987
1988
1989
1990 ;;; Arithmetic commands.
1991
1992 (defun calc-binary-op (name func arg &optional ident unary func2)
1993 (setq calc-aborted-prefix name)
1994 (if (null arg)
1995 (calc-enter-result 2 name (cons (or func2 func)
1996 (mapcar 'math-check-complete
1997 (calc-top-list 2))))
1998 (require 'calc-ext)
1999 (calc-binary-op-fancy name func arg ident unary)))
2000
2001 (defun calc-unary-op (name func arg &optional func2)
2002 (setq calc-aborted-prefix name)
2003 (if (null arg)
2004 (calc-enter-result 1 name (list (or func2 func)
2005 (math-check-complete (calc-top 1))))
2006 (require 'calc-ext)
2007 (calc-unary-op-fancy name func arg)))
2008
2009
2010 (defun calc-plus (arg)
2011 (interactive "P")
2012 (calc-slow-wrapper
2013 (calc-binary-op "+" 'calcFunc-add arg 0 nil '+)))
2014
2015 (defun calc-minus (arg)
2016 (interactive "P")
2017 (calc-slow-wrapper
2018 (calc-binary-op "-" 'calcFunc-sub arg 0 'neg '-)))
2019
2020 (defun calc-times (arg)
2021 (interactive "P")
2022 (calc-slow-wrapper
2023 (calc-binary-op "*" 'calcFunc-mul arg 1 nil '*)))
2024
2025 (defun calc-divide (arg)
2026 (interactive "P")
2027 (calc-slow-wrapper
2028 (calc-binary-op "/" 'calcFunc-div arg 0 'calcFunc-inv '/)))
2029
2030 (defun calc-left-divide (arg)
2031 (interactive "P")
2032 (calc-slow-wrapper
2033 (calc-binary-op "ldiv" 'calcFunc-ldiv arg 0 nil nil)))
2034
2035 (defun calc-change-sign (arg)
2036 (interactive "P")
2037 (calc-wrapper
2038 (calc-unary-op "chs" 'neg arg)))
2039
2040
2041
2042 ;;; Stack management commands.
2043
2044 (defun calc-enter (n)
2045 (interactive "p")
2046 (calc-wrapper
2047 (cond ((< n 0)
2048 (calc-push-list (calc-top-list 1 (- n))))
2049 ((= n 0)
2050 (calc-push-list (calc-top-list (calc-stack-size))))
2051 (t
2052 (calc-push-list (calc-top-list n))))))
2053
2054
2055 (defun calc-pop (n)
2056 (interactive "P")
2057 (calc-wrapper
2058 (let* ((nn (prefix-numeric-value n))
2059 (top (and (null n) (calc-top 1))))
2060 (cond ((and (null n)
2061 (eq (car-safe top) 'incomplete)
2062 (> (length top) (if (eq (nth 1 top) 'intv) 3 2)))
2063 (calc-pop-push-list 1 (let ((tt (copy-sequence top)))
2064 (setcdr (nthcdr (- (length tt) 2) tt) nil)
2065 (list tt))))
2066 ((< nn 0)
2067 (if (and calc-any-selections
2068 (calc-top-selected 1 (- nn)))
2069 (calc-delete-selection (- nn))
2070 (calc-pop-stack 1 (- nn) t)))
2071 ((= nn 0)
2072 (calc-pop-stack (calc-stack-size) 1 t))
2073 (t
2074 (if (and calc-any-selections
2075 (= nn 1)
2076 (calc-top-selected 1 1))
2077 (calc-delete-selection 1)
2078 (calc-pop-stack nn)))))))
2079
2080
2081
2082
2083 ;;;; Reading a number using the minibuffer.
2084 (defvar calc-buffer)
2085 (defvar calc-prev-char)
2086 (defvar calc-prev-prev-char)
2087 (defvar calc-digit-value)
2088 (defun calcDigit-start ()
2089 (interactive)
2090 (calc-wrapper
2091 (if (or calc-algebraic-mode
2092 (and (> calc-number-radix 14) (eq last-command-char ?e)))
2093 (calc-alg-digit-entry)
2094 (calc-unread-command)
2095 (setq calc-aborted-prefix nil)
2096 (let* ((calc-digit-value nil)
2097 (calc-prev-char nil)
2098 (calc-prev-prev-char nil)
2099 (calc-buffer (current-buffer))
2100 (buf (if calc-emacs-type-lucid
2101 (catch 'calc-foo
2102 (catch 'execute-kbd-macro
2103 (throw 'calc-foo
2104 (read-from-minibuffer
2105 "Calc: " "" calc-digit-map)))
2106 (error "Lucid Emacs requires RET after %s"
2107 "digit entry in kbd macro"))
2108 (let ((old-esc (lookup-key global-map "\e")))
2109 (unwind-protect
2110 (progn
2111 (define-key global-map "\e" nil)
2112 (read-from-minibuffer "Calc: " "" calc-digit-map))
2113 (define-key global-map "\e" old-esc))))))
2114 (or calc-digit-value (setq calc-digit-value (math-read-number buf)))
2115 (if (stringp calc-digit-value)
2116 (calc-alg-entry calc-digit-value)
2117 (if calc-digit-value
2118 (calc-push-list (list (calc-record (calc-normalize
2119 calc-digit-value))))))
2120 (if (eq calc-prev-char 'dots)
2121 (progn
2122 (require 'calc-ext)
2123 (calc-dots)))))))
2124
2125 (defsubst calc-minibuffer-size ()
2126 (- (point-max) (minibuffer-prompt-end)))
2127
2128 (defun calcDigit-nondigit ()
2129 (interactive)
2130 ;; Exercise for the reader: Figure out why this is a good precaution!
2131 (or (boundp 'calc-buffer)
2132 (use-local-map minibuffer-local-map))
2133 (let ((str (minibuffer-contents)))
2134 (setq calc-digit-value (save-excursion
2135 (set-buffer calc-buffer)
2136 (math-read-number str))))
2137 (if (and (null calc-digit-value) (> (calc-minibuffer-size) 0))
2138 (progn
2139 (beep)
2140 (calc-temp-minibuffer-message " [Bad format]"))
2141 (or (memq last-command-char '(32 13))
2142 (progn (setq prefix-arg current-prefix-arg)
2143 (calc-unread-command (if (and (eq last-command-char 27)
2144 (>= last-input-char 128))
2145 last-input-char
2146 nil))))
2147 (exit-minibuffer)))
2148
2149
2150 (defun calc-minibuffer-contains (rex)
2151 (save-excursion
2152 (goto-char (minibuffer-prompt-end))
2153 (looking-at rex)))
2154
2155 (defun calcDigit-key ()
2156 (interactive)
2157 (goto-char (point-max))
2158 (if (or (and (memq last-command-char '(?+ ?-))
2159 (> (buffer-size) 0)
2160 (/= (preceding-char) ?e))
2161 (and (memq last-command-char '(?m ?s))
2162 (not (calc-minibuffer-contains "[-+]?[0-9]+\\.?0*[@oh].*"))
2163 (not (calc-minibuffer-contains "[-+]?\\(1[1-9]\\|[2-9][0-9]\\)#.*"))))
2164 (calcDigit-nondigit)
2165 (if (calc-minibuffer-contains "\\([-+]?\\|.* \\)\\'")
2166 (cond ((memq last-command-char '(?. ?@)) (insert "0"))
2167 ((and (memq last-command-char '(?o ?h ?m))
2168 (not (calc-minibuffer-contains ".*#.*"))) (insert "0"))
2169 ((memq last-command-char '(?: ?e)) (insert "1"))
2170 ((eq last-command-char ?#)
2171 (insert (int-to-string calc-number-radix)))))
2172 (if (and (calc-minibuffer-contains "\\([-+]?[0-9]+#\\|[^:]*:\\)\\'")
2173 (eq last-command-char ?:))
2174 (insert "1"))
2175 (if (and (calc-minibuffer-contains "[-+]?[0-9]+#\\'")
2176 (eq last-command-char ?.))
2177 (insert "0"))
2178 (if (and (calc-minibuffer-contains "[-+]?0*\\([2-9]\\|1[0-4]\\)#\\'")
2179 (eq last-command-char ?e))
2180 (insert "1"))
2181 (if (or (and (memq last-command-char '(?h ?o ?m ?s ?p))
2182 (calc-minibuffer-contains ".*#.*"))
2183 (and (eq last-command-char ?e)
2184 (calc-minibuffer-contains "[-+]?\\(1[5-9]\\|[2-9][0-9]\\)#.*"))
2185 (and (eq last-command-char ?n)
2186 (calc-minibuffer-contains "[-+]?\\(2[4-9]\\|[3-9][0-9]\\)#.*")))
2187 (setq last-command-char (upcase last-command-char)))
2188 (cond
2189 ((memq last-command-char '(?_ ?n))
2190 (goto-char (minibuffer-prompt-end))
2191 (if (and (search-forward " +/- " nil t)
2192 (not (search-forward "e" nil t)))
2193 (beep)
2194 (and (not (calc-minibuffer-contains "[-+]?\\(1[5-9]\\|[2-9][0-9]\\)#.*"))
2195 (search-forward "e" nil t))
2196 (if (looking-at "+")
2197 (delete-char 1))
2198 (if (looking-at "-")
2199 (delete-char 1)
2200 (insert "-")))
2201 (goto-char (point-max)))
2202 ((eq last-command-char ?p)
2203 (if (or (calc-minibuffer-contains ".*\\+/-.*")
2204 (calc-minibuffer-contains ".*mod.*")
2205 (calc-minibuffer-contains ".*#.*")
2206 (calc-minibuffer-contains ".*[-+e:]\\'"))
2207 (beep)
2208 (if (not (calc-minibuffer-contains ".* \\'"))
2209 (insert " "))
2210 (insert "+/- ")))
2211 ((and (eq last-command-char ?M)
2212 (not (calc-minibuffer-contains
2213 "[-+]?\\(2[3-9]\\|[3-9][0-9]\\)#.*")))
2214 (if (or (calc-minibuffer-contains ".*\\+/-.*")
2215 (calc-minibuffer-contains ".*mod *[^ ]+")
2216 (calc-minibuffer-contains ".*[-+e:]\\'"))
2217 (beep)
2218 (if (calc-minibuffer-contains ".*mod \\'")
2219 (if calc-previous-modulo
2220 (insert (math-format-flat-expr calc-previous-modulo 0))
2221 (beep))
2222 (if (not (calc-minibuffer-contains ".* \\'"))
2223 (insert " "))
2224 (insert "mod "))))
2225 (t
2226 (insert (char-to-string last-command-char))
2227 (if (or (and (calc-minibuffer-contains "[-+]?\\(.*\\+/- *\\|.*mod *\\)?\\([0-9][0-9]?\\)#[0-9a-zA-Z]*\\(:[0-9a-zA-Z]*\\(:[0-9a-zA-Z]*\\)?\\|.[0-9a-zA-Z]*\\(e[-+]?[0-9]*\\)?\\)?\\'")
2228 (let ((radix (string-to-number
2229 (buffer-substring
2230 (match-beginning 2) (match-end 2)))))
2231 (and (>= radix 2)
2232 (<= radix 36)
2233 (or (memq last-command-char '(?# ?: ?. ?e ?+ ?-))
2234 (let ((dig (math-read-radix-digit
2235 (upcase last-command-char))))
2236 (and dig
2237 (< dig radix)))))))
2238 (calc-minibuffer-contains
2239 "[-+]?\\(.*\\+/- *\\|.*mod *\\)?\\([0-9]+\\.?0*[@oh] *\\)?\\([0-9]+\\.?0*['m] *\\)?[0-9]*\\(\\.?[0-9]*\\(e[-+]?[0-3]?[0-9]?[0-9]?[0-9]?[0-9]?[0-9]?[0-9]?\\)?\\|[0-9]:\\([0-9]+:\\)?[0-9]*\\)?[\"s]?\\'"))
2240 (if (and (memq last-command-char '(?@ ?o ?h ?\' ?m))
2241 (string-match " " calc-hms-format))
2242 (insert " "))
2243 (if (and (eq this-command last-command)
2244 (eq last-command-char ?.))
2245 (progn
2246 (require 'calc-ext)
2247 (calc-digit-dots))
2248 (delete-backward-char 1)
2249 (beep)
2250 (calc-temp-minibuffer-message " [Bad format]"))))))
2251 (setq calc-prev-prev-char calc-prev-char
2252 calc-prev-char last-command-char))
2253
2254
2255 (defun calcDigit-backspace ()
2256 (interactive)
2257 (goto-char (point-max))
2258 (cond ((calc-minibuffer-contains ".* \\+/- \\'")
2259 (backward-delete-char 5))
2260 ((calc-minibuffer-contains ".* mod \\'")
2261 (backward-delete-char 5))
2262 ((calc-minibuffer-contains ".* \\'")
2263 (backward-delete-char 2))
2264 ((eq last-command 'calcDigit-start)
2265 (erase-buffer))
2266 (t (backward-delete-char 1)))
2267 (if (= (calc-minibuffer-size) 0)
2268 (progn
2269 (setq last-command-char 13)
2270 (calcDigit-nondigit))))
2271
2272
2273
2274
2275
2276
2277
2278 ;;;; Arithmetic routines.
2279 ;;;
2280 ;;; An object as manipulated by one of these routines may take any of the
2281 ;;; following forms:
2282 ;;;
2283 ;;; integer An integer. For normalized numbers, this format
2284 ;;; is used only for -999999 ... 999999.
2285 ;;;
2286 ;;; (bigpos N0 N1 N2 ...) A big positive integer, N0 + N1*1000 + N2*10^6 ...
2287 ;;; (bigneg N0 N1 N2 ...) A big negative integer, - N0 - N1*1000 ...
2288 ;;; Each digit N is in the range 0 ... 999.
2289 ;;; Normalized, always at least three N present,
2290 ;;; and the most significant N is nonzero.
2291 ;;;
2292 ;;; (frac NUM DEN) A fraction. NUM and DEN are small or big integers.
2293 ;;; Normalized, DEN > 1.
2294 ;;;
2295 ;;; (float NUM EXP) A floating-point number, NUM * 10^EXP;
2296 ;;; NUM is a small or big integer, EXP is a small int.
2297 ;;; Normalized, NUM is not a multiple of 10, and
2298 ;;; abs(NUM) < 10^calc-internal-prec.
2299 ;;; Normalized zero is stored as (float 0 0).
2300 ;;;
2301 ;;; (cplx REAL IMAG) A complex number; REAL and IMAG are any of above.
2302 ;;; Normalized, IMAG is nonzero.
2303 ;;;
2304 ;;; (polar R THETA) Polar complex number. Normalized, R > 0 and THETA
2305 ;;; is neither zero nor 180 degrees (pi radians).
2306 ;;;
2307 ;;; (vec A B C ...) Vector of objects A, B, C, ... A matrix is a
2308 ;;; vector of vectors.
2309 ;;;
2310 ;;; (hms H M S) Angle in hours-minutes-seconds form. All three
2311 ;;; components have the same sign; H and M must be
2312 ;;; numerically integers; M and S are expected to
2313 ;;; lie in the range [0,60).
2314 ;;;
2315 ;;; (date N) A date or date/time object. N is an integer to
2316 ;;; store a date only, or a fraction or float to
2317 ;;; store a date and time.
2318 ;;;
2319 ;;; (sdev X SIGMA) Error form, X +/- SIGMA. When normalized,
2320 ;;; SIGMA > 0. X is any complex number and SIGMA
2321 ;;; is real numbers; or these may be symbolic
2322 ;;; expressions where SIGMA is assumed real.
2323 ;;;
2324 ;;; (intv MASK LO HI) Interval form. MASK is 0=(), 1=(], 2=[), or 3=[].
2325 ;;; LO and HI are any real numbers, or symbolic
2326 ;;; expressions which are assumed real, and LO < HI.
2327 ;;; For [LO..HI], if LO = HI normalization produces LO,
2328 ;;; and if LO > HI normalization produces [LO..LO).
2329 ;;; For other intervals, if LO > HI normalization
2330 ;;; sets HI equal to LO.
2331 ;;;
2332 ;;; (mod N M) Number modulo M. When normalized, 0 <= N < M.
2333 ;;; N and M are real numbers.
2334 ;;;
2335 ;;; (var V S) Symbolic variable. V is a Lisp symbol which
2336 ;;; represents the variable's visible name. S is
2337 ;;; the symbol which actually stores the variable's
2338 ;;; value: (var pi var-pi).
2339 ;;;
2340 ;;; In general, combining rational numbers in a calculation always produces
2341 ;;; a rational result, but if either argument is a float, result is a float.
2342
2343 ;;; In the following comments, [x y z] means result is x, args must be y, z,
2344 ;;; respectively, where the code letters are:
2345 ;;;
2346 ;;; O Normalized object (vector or number)
2347 ;;; V Normalized vector
2348 ;;; N Normalized number of any type
2349 ;;; N Normalized complex number
2350 ;;; R Normalized real number (float or rational)
2351 ;;; F Normalized floating-point number
2352 ;;; T Normalized rational number
2353 ;;; I Normalized integer
2354 ;;; B Normalized big integer
2355 ;;; S Normalized small integer
2356 ;;; D Digit (small integer, 0..999)
2357 ;;; L Normalized bignum digit list (without "bigpos" or "bigneg" symbol)
2358 ;;; or normalized vector element list (without "vec")
2359 ;;; P Predicate (truth value)
2360 ;;; X Any Lisp object
2361 ;;; Z "nil"
2362 ;;;
2363 ;;; Lower-case letters signify possibly un-normalized values.
2364 ;;; "L.D" means a cons of an L and a D.
2365 ;;; [N N; n n] means result will be normalized if argument is.
2366 ;;; Also, [Public] marks routines intended to be called from outside.
2367 ;;; [This notation has been neglected in many recent routines.]
2368
2369 (defvar math-eval-rules-cache)
2370 (defvar math-eval-rules-cache-other)
2371 ;;; Reduce an object to canonical (normalized) form. [O o; Z Z] [Public]
2372
2373 (defvar math-normalize-a)
2374 (defun math-normalize (math-normalize-a)
2375 (cond
2376 ((not (consp math-normalize-a))
2377 (if (integerp math-normalize-a)
2378 (if (or (>= math-normalize-a 1000000) (<= math-normalize-a -1000000))
2379 (math-bignum math-normalize-a)
2380 math-normalize-a)
2381 math-normalize-a))
2382 ((eq (car math-normalize-a) 'bigpos)
2383 (if (eq (nth (1- (length math-normalize-a)) math-normalize-a) 0)
2384 (let* ((last (setq math-normalize-a
2385 (copy-sequence math-normalize-a))) (digs math-normalize-a))
2386 (while (setq digs (cdr digs))
2387 (or (eq (car digs) 0) (setq last digs)))
2388 (setcdr last nil)))
2389 (if (cdr (cdr (cdr math-normalize-a)))
2390 math-normalize-a
2391 (cond
2392 ((cdr (cdr math-normalize-a)) (+ (nth 1 math-normalize-a)
2393 (* (nth 2 math-normalize-a) 1000)))
2394 ((cdr math-normalize-a) (nth 1 math-normalize-a))
2395 (t 0))))
2396 ((eq (car math-normalize-a) 'bigneg)
2397 (if (eq (nth (1- (length math-normalize-a)) math-normalize-a) 0)
2398 (let* ((last (setq math-normalize-a (copy-sequence math-normalize-a)))
2399 (digs math-normalize-a))
2400 (while (setq digs (cdr digs))
2401 (or (eq (car digs) 0) (setq last digs)))
2402 (setcdr last nil)))
2403 (if (cdr (cdr (cdr math-normalize-a)))
2404 math-normalize-a
2405 (cond
2406 ((cdr (cdr math-normalize-a)) (- (+ (nth 1 math-normalize-a)
2407 (* (nth 2 math-normalize-a) 1000))))
2408 ((cdr math-normalize-a) (- (nth 1 math-normalize-a)))
2409 (t 0))))
2410 ((eq (car math-normalize-a) 'float)
2411 (math-make-float (math-normalize (nth 1 math-normalize-a))
2412 (nth 2 math-normalize-a)))
2413 ((or (memq (car math-normalize-a)
2414 '(frac cplx polar hms date mod sdev intv vec var quote
2415 special-const calcFunc-if calcFunc-lambda
2416 calcFunc-quote calcFunc-condition
2417 calcFunc-evalto))
2418 (integerp (car math-normalize-a))
2419 (and (consp (car math-normalize-a))
2420 (not (eq (car (car math-normalize-a)) 'lambda))))
2421 (require 'calc-ext)
2422 (math-normalize-fancy math-normalize-a))
2423 (t
2424 (or (and calc-simplify-mode
2425 (require 'calc-ext)
2426 (math-normalize-nonstandard))
2427 (let ((args (mapcar 'math-normalize (cdr math-normalize-a))))
2428 (or (condition-case err
2429 (let ((func
2430 (assq (car math-normalize-a) '( ( + . math-add )
2431 ( - . math-sub )
2432 ( * . math-mul )
2433 ( / . math-div )
2434 ( % . math-mod )
2435 ( ^ . math-pow )
2436 ( neg . math-neg )
2437 ( | . math-concat ) ))))
2438 (or (and var-EvalRules
2439 (progn
2440 (or (eq var-EvalRules math-eval-rules-cache-tag)
2441 (progn
2442 (require 'calc-ext)
2443 (math-recompile-eval-rules)))
2444 (and (or math-eval-rules-cache-other
2445 (assq (car math-normalize-a)
2446 math-eval-rules-cache))
2447 (math-apply-rewrites
2448 (cons (car math-normalize-a) args)
2449 (cdr math-eval-rules-cache)
2450 nil math-eval-rules-cache))))
2451 (if func
2452 (apply (cdr func) args)
2453 (and (or (consp (car math-normalize-a))
2454 (fboundp (car math-normalize-a))
2455 (and (not (featurep 'calc-ext))
2456 (require 'calc-ext)
2457 (fboundp (car math-normalize-a))))
2458 (apply (car math-normalize-a) args)))))
2459 (wrong-number-of-arguments
2460 (calc-record-why "*Wrong number of arguments"
2461 (cons (car math-normalize-a) args))
2462 nil)
2463 (wrong-type-argument
2464 (or calc-next-why
2465 (calc-record-why "Wrong type of argument"
2466 (cons (car math-normalize-a) args)))
2467 nil)
2468 (args-out-of-range
2469 (calc-record-why "*Argument out of range"
2470 (cons (car math-normalize-a) args))
2471 nil)
2472 (inexact-result
2473 (calc-record-why "No exact representation for result"
2474 (cons (car math-normalize-a) args))
2475 nil)
2476 (math-overflow
2477 (calc-record-why "*Floating-point overflow occurred"
2478 (cons (car math-normalize-a) args))
2479 nil)
2480 (math-underflow
2481 (calc-record-why "*Floating-point underflow occurred"
2482 (cons (car math-normalize-a) args))
2483 nil)
2484 (void-variable
2485 (if (eq (nth 1 err) 'var-EvalRules)
2486 (progn
2487 (setq var-EvalRules nil)
2488 (math-normalize (cons (car math-normalize-a) args)))
2489 (calc-record-why "*Variable is void" (nth 1 err)))))
2490 (if (consp (car math-normalize-a))
2491 (math-dimension-error)
2492 (cons (car math-normalize-a) args))))))))
2493
2494
2495
2496 ;;; True if A is a floating-point real or complex number. [P x] [Public]
2497 (defun math-floatp (a)
2498 (cond ((eq (car-safe a) 'float) t)
2499 ((memq (car-safe a) '(cplx polar mod sdev intv))
2500 (or (math-floatp (nth 1 a))
2501 (math-floatp (nth 2 a))
2502 (and (eq (car a) 'intv) (math-floatp (nth 3 a)))))
2503 ((eq (car-safe a) 'date)
2504 (math-floatp (nth 1 a)))))
2505
2506
2507
2508 ;;; Verify that A is a complete object and return A. [x x] [Public]
2509 (defun math-check-complete (a)
2510 (cond ((integerp a) a)
2511 ((eq (car-safe a) 'incomplete)
2512 (calc-incomplete-error a))
2513 ((consp a) a)
2514 (t (error "Invalid data object encountered"))))
2515
2516
2517
2518 ;;; Coerce integer A to be a bignum. [B S]
2519 (defun math-bignum (a)
2520 (if (>= a 0)
2521 (cons 'bigpos (math-bignum-big a))
2522 (cons 'bigneg (math-bignum-big (- a)))))
2523
2524 (defun math-bignum-big (a) ; [L s]
2525 (if (= a 0)
2526 nil
2527 (cons (% a 1000) (math-bignum-big (/ a 1000)))))
2528
2529
2530 ;;; Build a normalized floating-point number. [F I S]
2531 (defun math-make-float (mant exp)
2532 (if (eq mant 0)
2533 '(float 0 0)
2534 (let* ((ldiff (- calc-internal-prec (math-numdigs mant))))
2535 (if (< ldiff 0)
2536 (setq mant (math-scale-rounding mant ldiff)
2537 exp (- exp ldiff))))
2538 (if (consp mant)
2539 (let ((digs (cdr mant)))
2540 (if (= (% (car digs) 10) 0)
2541 (progn
2542 (while (= (car digs) 0)
2543 (setq digs (cdr digs)
2544 exp (+ exp 3)))
2545 (while (= (% (car digs) 10) 0)
2546 (setq digs (math-div10-bignum digs)
2547 exp (1+ exp)))
2548 (setq mant (math-normalize (cons (car mant) digs))))))
2549 (while (= (% mant 10) 0)
2550 (setq mant (/ mant 10)
2551 exp (1+ exp))))
2552 (if (and (<= exp -4000000)
2553 (<= (+ exp (math-numdigs mant) -1) -4000000))
2554 (signal 'math-underflow nil)
2555 (if (and (>= exp 3000000)
2556 (>= (+ exp (math-numdigs mant) -1) 4000000))
2557 (signal 'math-overflow nil)
2558 (list 'float mant exp)))))
2559
2560 (defun math-div10-bignum (a) ; [l l]
2561 (if (cdr a)
2562 (cons (+ (/ (car a) 10) (* (% (nth 1 a) 10) 100))
2563 (math-div10-bignum (cdr a)))
2564 (list (/ (car a) 10))))
2565
2566 ;;; Coerce A to be a float. [F N; V V] [Public]
2567 (defun math-float (a)
2568 (cond ((Math-integerp a) (math-make-float a 0))
2569 ((eq (car a) 'frac) (math-div (math-float (nth 1 a)) (nth 2 a)))
2570 ((eq (car a) 'float) a)
2571 ((memq (car a) '(cplx polar vec hms date sdev mod))
2572 (cons (car a) (mapcar 'math-float (cdr a))))
2573 (t (math-float-fancy a))))
2574
2575
2576 (defun math-neg (a)
2577 (cond ((not (consp a)) (- a))
2578 ((eq (car a) 'bigpos) (cons 'bigneg (cdr a)))
2579 ((eq (car a) 'bigneg) (cons 'bigpos (cdr a)))
2580 ((memq (car a) '(frac float))
2581 (list (car a) (Math-integer-neg (nth 1 a)) (nth 2 a)))
2582 ((memq (car a) '(cplx vec hms date calcFunc-idn))
2583 (cons (car a) (mapcar 'math-neg (cdr a))))
2584 (t (math-neg-fancy a))))
2585
2586
2587 ;;; Compute the number of decimal digits in integer A. [S I]
2588 (defun math-numdigs (a)
2589 (if (consp a)
2590 (if (cdr a)
2591 (let* ((len (1- (length a)))
2592 (top (nth len a)))
2593 (+ (* len 3) (cond ((>= top 100) 0) ((>= top 10) -1) (t -2))))
2594 0)
2595 (cond ((>= a 100) (+ (math-numdigs (/ a 1000)) 3))
2596 ((>= a 10) 2)
2597 ((>= a 1) 1)
2598 ((= a 0) 0)
2599 ((> a -10) 1)
2600 ((> a -100) 2)
2601 (t (math-numdigs (- a))))))
2602
2603 ;;; Multiply (with truncation toward 0) the integer A by 10^N. [I i S]
2604 (defun math-scale-int (a n)
2605 (cond ((= n 0) a)
2606 ((> n 0) (math-scale-left a n))
2607 (t (math-normalize (math-scale-right a (- n))))))
2608
2609 (defun math-scale-left (a n) ; [I I S]
2610 (if (= n 0)
2611 a
2612 (if (consp a)
2613 (cons (car a) (math-scale-left-bignum (cdr a) n))
2614 (if (>= n 3)
2615 (if (or (>= a 1000) (<= a -1000))
2616 (math-scale-left (math-bignum a) n)
2617 (math-scale-left (* a 1000) (- n 3)))
2618 (if (= n 2)
2619 (if (or (>= a 10000) (<= a -10000))
2620 (math-scale-left (math-bignum a) 2)
2621 (* a 100))
2622 (if (or (>= a 100000) (<= a -100000))
2623 (math-scale-left (math-bignum a) 1)
2624 (* a 10)))))))
2625
2626 (defun math-scale-left-bignum (a n)
2627 (if (>= n 3)
2628 (while (>= (setq a (cons 0 a)
2629 n (- n 3)) 3)))
2630 (if (> n 0)
2631 (math-mul-bignum-digit a (if (= n 2) 100 10) 0)
2632 a))
2633
2634 (defun math-scale-right (a n) ; [i i S]
2635 (if (= n 0)
2636 a
2637 (if (consp a)
2638 (cons (car a) (math-scale-right-bignum (cdr a) n))
2639 (if (<= a 0)
2640 (if (= a 0)
2641 0
2642 (- (math-scale-right (- a) n)))
2643 (if (>= n 3)
2644 (while (and (> (setq a (/ a 1000)) 0)
2645 (>= (setq n (- n 3)) 3))))
2646 (if (= n 2)
2647 (/ a 100)
2648 (if (= n 1)
2649 (/ a 10)
2650 a))))))
2651
2652 (defun math-scale-right-bignum (a n) ; [L L S; l l S]
2653 (if (>= n 3)
2654 (setq a (nthcdr (/ n 3) a)
2655 n (% n 3)))
2656 (if (> n 0)
2657 (cdr (math-mul-bignum-digit a (if (= n 2) 10 100) 0))
2658 a))
2659
2660 ;;; Multiply (with rounding) the integer A by 10^N. [I i S]
2661 (defun math-scale-rounding (a n)
2662 (cond ((>= n 0)
2663 (math-scale-left a n))
2664 ((consp a)
2665 (math-normalize
2666 (cons (car a)
2667 (let ((val (if (< n -3)
2668 (math-scale-right-bignum (cdr a) (- -3 n))
2669 (if (= n -2)
2670 (math-mul-bignum-digit (cdr a) 10 0)
2671 (if (= n -1)
2672 (math-mul-bignum-digit (cdr a) 100 0)
2673 (cdr a)))))) ; n = -3
2674 (if (and val (>= (car val) 500))
2675 (if (cdr val)
2676 (if (eq (car (cdr val)) 999)
2677 (math-add-bignum (cdr val) '(1))
2678 (cons (1+ (car (cdr val))) (cdr (cdr val))))
2679 '(1))
2680 (cdr val))))))
2681 (t
2682 (if (< a 0)
2683 (- (math-scale-rounding (- a) n))
2684 (if (= n -1)
2685 (/ (+ a 5) 10)
2686 (/ (+ (math-scale-right a (- -1 n)) 5) 10))))))
2687
2688
2689 ;;; Compute the sum of A and B. [O O O] [Public]
2690 (defun math-add (a b)
2691 (or
2692 (and (not (or (consp a) (consp b)))
2693 (progn
2694 (setq a (+ a b))
2695 (if (or (<= a -1000000) (>= a 1000000))
2696 (math-bignum a)
2697 a)))
2698 (and (Math-zerop a) (not (eq (car-safe a) 'mod))
2699 (if (and (math-floatp a) (Math-ratp b)) (math-float b) b))
2700 (and (Math-zerop b) (not (eq (car-safe b) 'mod))
2701 (if (and (math-floatp b) (Math-ratp a)) (math-float a) a))
2702 (and (Math-objvecp a) (Math-objvecp b)
2703 (or
2704 (and (Math-integerp a) (Math-integerp b)
2705 (progn
2706 (or (consp a) (setq a (math-bignum a)))
2707 (or (consp b) (setq b (math-bignum b)))
2708 (if (eq (car a) 'bigneg)
2709 (if (eq (car b) 'bigneg)
2710 (cons 'bigneg (math-add-bignum (cdr a) (cdr b)))
2711 (math-normalize
2712 (let ((diff (math-sub-bignum (cdr b) (cdr a))))
2713 (if (eq diff 'neg)
2714 (cons 'bigneg (math-sub-bignum (cdr a) (cdr b)))
2715 (cons 'bigpos diff)))))
2716 (if (eq (car b) 'bigneg)
2717 (math-normalize
2718 (let ((diff (math-sub-bignum (cdr a) (cdr b))))
2719 (if (eq diff 'neg)
2720 (cons 'bigneg (math-sub-bignum (cdr b) (cdr a)))
2721 (cons 'bigpos diff))))
2722 (cons 'bigpos (math-add-bignum (cdr a) (cdr b)))))))
2723 (and (Math-ratp a) (Math-ratp b)
2724 (require 'calc-ext)
2725 (calc-add-fractions a b))
2726 (and (Math-realp a) (Math-realp b)
2727 (progn
2728 (or (and (consp a) (eq (car a) 'float))
2729 (setq a (math-float a)))
2730 (or (and (consp b) (eq (car b) 'float))
2731 (setq b (math-float b)))
2732 (math-add-float a b)))
2733 (and (require 'calc-ext)
2734 (math-add-objects-fancy a b))))
2735 (and (require 'calc-ext)
2736 (math-add-symb-fancy a b))))
2737
2738 (defun math-add-bignum (a b) ; [L L L; l l l]
2739 (if a
2740 (if b
2741 (let* ((a (copy-sequence a)) (aa a) (carry nil) sum)
2742 (while (and aa b)
2743 (if carry
2744 (if (< (setq sum (+ (car aa) (car b))) 999)
2745 (progn
2746 (setcar aa (1+ sum))
2747 (setq carry nil))
2748 (setcar aa (+ sum -999)))
2749 (if (< (setq sum (+ (car aa) (car b))) 1000)
2750 (setcar aa sum)
2751 (setcar aa (+ sum -1000))
2752 (setq carry t)))
2753 (setq aa (cdr aa)
2754 b (cdr b)))
2755 (if carry
2756 (if b
2757 (nconc a (math-add-bignum b '(1)))
2758 (while (eq (car aa) 999)
2759 (setcar aa 0)
2760 (setq aa (cdr aa)))
2761 (if aa
2762 (progn
2763 (setcar aa (1+ (car aa)))
2764 a)
2765 (nconc a '(1))))
2766 (if b
2767 (nconc a b)
2768 a)))
2769 a)
2770 b))
2771
2772 (defun math-sub-bignum (a b) ; [l l l]
2773 (if b
2774 (if a
2775 (let* ((a (copy-sequence a)) (aa a) (borrow nil) sum diff)
2776 (while (and aa b)
2777 (if borrow
2778 (if (>= (setq diff (- (car aa) (car b))) 1)
2779 (progn
2780 (setcar aa (1- diff))
2781 (setq borrow nil))
2782 (setcar aa (+ diff 999)))
2783 (if (>= (setq diff (- (car aa) (car b))) 0)
2784 (setcar aa diff)
2785 (setcar aa (+ diff 1000))
2786 (setq borrow t)))
2787 (setq aa (cdr aa)
2788 b (cdr b)))
2789 (if borrow
2790 (progn
2791 (while (eq (car aa) 0)
2792 (setcar aa 999)
2793 (setq aa (cdr aa)))
2794 (if aa
2795 (progn
2796 (setcar aa (1- (car aa)))
2797 a)
2798 'neg))
2799 (while (eq (car b) 0)
2800 (setq b (cdr b)))
2801 (if b
2802 'neg
2803 a)))
2804 (while (eq (car b) 0)
2805 (setq b (cdr b)))
2806 (and b
2807 'neg))
2808 a))
2809
2810 (defun math-add-float (a b) ; [F F F]
2811 (let ((ediff (- (nth 2 a) (nth 2 b))))
2812 (if (>= ediff 0)
2813 (if (>= ediff (+ calc-internal-prec calc-internal-prec))
2814 a
2815 (math-make-float (math-add (nth 1 b)
2816 (if (eq ediff 0)
2817 (nth 1 a)
2818 (math-scale-left (nth 1 a) ediff)))
2819 (nth 2 b)))
2820 (if (>= (setq ediff (- ediff))
2821 (+ calc-internal-prec calc-internal-prec))
2822 b
2823 (math-make-float (math-add (nth 1 a)
2824 (math-scale-left (nth 1 b) ediff))
2825 (nth 2 a))))))
2826
2827 ;;; Compute the difference of A and B. [O O O] [Public]
2828 (defun math-sub (a b)
2829 (if (or (consp a) (consp b))
2830 (math-add a (math-neg b))
2831 (setq a (- a b))
2832 (if (or (<= a -1000000) (>= a 1000000))
2833 (math-bignum a)
2834 a)))
2835
2836 (defun math-sub-float (a b) ; [F F F]
2837 (let ((ediff (- (nth 2 a) (nth 2 b))))
2838 (if (>= ediff 0)
2839 (if (>= ediff (+ calc-internal-prec calc-internal-prec))
2840 a
2841 (math-make-float (math-add (Math-integer-neg (nth 1 b))
2842 (if (eq ediff 0)
2843 (nth 1 a)
2844 (math-scale-left (nth 1 a) ediff)))
2845 (nth 2 b)))
2846 (if (>= (setq ediff (- ediff))
2847 (+ calc-internal-prec calc-internal-prec))
2848 b
2849 (math-make-float (math-add (nth 1 a)
2850 (Math-integer-neg
2851 (math-scale-left (nth 1 b) ediff)))
2852 (nth 2 a))))))
2853
2854
2855 ;;; Compute the product of A and B. [O O O] [Public]
2856 (defun math-mul (a b)
2857 (or
2858 (and (not (consp a)) (not (consp b))
2859 (< a 1000) (> a -1000) (< b 1000) (> b -1000)
2860 (* a b))
2861 (and (Math-zerop a) (not (eq (car-safe b) 'mod))
2862 (if (Math-scalarp b)
2863 (if (and (math-floatp b) (Math-ratp a)) (math-float a) a)
2864 (require 'calc-ext)
2865 (math-mul-zero a b)))
2866 (and (Math-zerop b) (not (eq (car-safe a) 'mod))
2867 (if (Math-scalarp a)
2868 (if (and (math-floatp a) (Math-ratp b)) (math-float b) b)
2869 (require 'calc-ext)
2870 (math-mul-zero b a)))
2871 (and (Math-objvecp a) (Math-objvecp b)
2872 (or
2873 (and (Math-integerp a) (Math-integerp b)
2874 (progn
2875 (or (consp a) (setq a (math-bignum a)))
2876 (or (consp b) (setq b (math-bignum b)))
2877 (math-normalize
2878 (cons (if (eq (car a) (car b)) 'bigpos 'bigneg)
2879 (if (cdr (cdr a))
2880 (if (cdr (cdr b))
2881 (math-mul-bignum (cdr a) (cdr b))
2882 (math-mul-bignum-digit (cdr a) (nth 1 b) 0))
2883 (math-mul-bignum-digit (cdr b) (nth 1 a) 0))))))
2884 (and (Math-ratp a) (Math-ratp b)
2885 (require 'calc-ext)
2886 (calc-mul-fractions a b))
2887 (and (Math-realp a) (Math-realp b)
2888 (progn
2889 (or (and (consp a) (eq (car a) 'float))
2890 (setq a (math-float a)))
2891 (or (and (consp b) (eq (car b) 'float))
2892 (setq b (math-float b)))
2893 (math-make-float (math-mul (nth 1 a) (nth 1 b))
2894 (+ (nth 2 a) (nth 2 b)))))
2895 (and (require 'calc-ext)
2896 (math-mul-objects-fancy a b))))
2897 (and (require 'calc-ext)
2898 (math-mul-symb-fancy a b))))
2899
2900 (defun math-infinitep (a &optional undir)
2901 (while (and (consp a) (memq (car a) '(* / neg)))
2902 (if (or (not (eq (car a) '*)) (math-infinitep (nth 1 a)))
2903 (setq a (nth 1 a))
2904 (setq a (nth 2 a))))
2905 (and (consp a)
2906 (eq (car a) 'var)
2907 (memq (nth 2 a) '(var-inf var-uinf var-nan))
2908 (if (and undir (eq (nth 2 a) 'var-inf))
2909 '(var uinf var-uinf)
2910 a)))
2911
2912 ;;; Multiply digit lists A and B. [L L L; l l l]
2913 (defun math-mul-bignum (a b)
2914 (and a b
2915 (let* ((sum (if (<= (car b) 1)
2916 (if (= (car b) 0)
2917 (list 0)
2918 (copy-sequence a))
2919 (math-mul-bignum-digit a (car b) 0)))
2920 (sump sum) c d aa ss prod)
2921 (while (setq b (cdr b))
2922 (setq ss (setq sump (or (cdr sump) (setcdr sump (list 0))))
2923 d (car b)
2924 c 0
2925 aa a)
2926 (while (progn
2927 (setcar ss (% (setq prod (+ (+ (car ss) (* (car aa) d))
2928 c)) 1000))
2929 (setq aa (cdr aa)))
2930 (setq c (/ prod 1000)
2931 ss (or (cdr ss) (setcdr ss (list 0)))))
2932 (if (>= prod 1000)
2933 (if (cdr ss)
2934 (setcar (cdr ss) (+ (/ prod 1000) (car (cdr ss))))
2935 (setcdr ss (list (/ prod 1000))))))
2936 sum)))
2937
2938 ;;; Multiply digit list A by digit D. [L L D D; l l D D]
2939 (defun math-mul-bignum-digit (a d c)
2940 (if a
2941 (if (<= d 1)
2942 (and (= d 1) a)
2943 (let* ((a (copy-sequence a)) (aa a) prod)
2944 (while (progn
2945 (setcar aa (% (setq prod (+ (* (car aa) d) c)) 1000))
2946 (cdr aa))
2947 (setq aa (cdr aa)
2948 c (/ prod 1000)))
2949 (if (>= prod 1000)
2950 (setcdr aa (list (/ prod 1000))))
2951 a))
2952 (and (> c 0)
2953 (list c))))
2954
2955
2956 ;;; Compute the integer (quotient . remainder) of A and B, which may be
2957 ;;; small or big integers. Type and consistency of truncation is undefined
2958 ;;; if A or B is negative. B must be nonzero. [I.I I I] [Public]
2959 (defun math-idivmod (a b)
2960 (if (eq b 0)
2961 (math-reject-arg a "*Division by zero"))
2962 (if (or (consp a) (consp b))
2963 (if (and (natnump b) (< b 1000))
2964 (let ((res (math-div-bignum-digit (cdr a) b)))
2965 (cons
2966 (math-normalize (cons (car a) (car res)))
2967 (cdr res)))
2968 (or (consp a) (setq a (math-bignum a)))
2969 (or (consp b) (setq b (math-bignum b)))
2970 (let ((res (math-div-bignum (cdr a) (cdr b))))
2971 (cons
2972 (math-normalize (cons (if (eq (car a) (car b)) 'bigpos 'bigneg)
2973 (car res)))
2974 (math-normalize (cons (car a) (cdr res))))))
2975 (cons (/ a b) (% a b))))
2976
2977 (defun math-quotient (a b) ; [I I I] [Public]
2978 (if (and (not (consp a)) (not (consp b)))
2979 (if (= b 0)
2980 (math-reject-arg a "*Division by zero")
2981 (/ a b))
2982 (if (and (natnump b) (< b 1000))
2983 (if (= b 0)
2984 (math-reject-arg a "*Division by zero")
2985 (math-normalize (cons (car a)
2986 (car (math-div-bignum-digit (cdr a) b)))))
2987 (or (consp a) (setq a (math-bignum a)))
2988 (or (consp b) (setq b (math-bignum b)))
2989 (let* ((alen (1- (length a)))
2990 (blen (1- (length b)))
2991 (d (/ 1000 (1+ (nth (1- blen) (cdr b)))))
2992 (res (math-div-bignum-big (math-mul-bignum-digit (cdr a) d 0)
2993 (math-mul-bignum-digit (cdr b) d 0)
2994 alen blen)))
2995 (math-normalize (cons (if (eq (car a) (car b)) 'bigpos 'bigneg)
2996 (car res)))))))
2997
2998
2999 ;;; Divide a bignum digit list by another. [l.l l L]
3000 ;;; The following division algorithm is borrowed from Knuth vol. II, sec. 4.3.1
3001 (defun math-div-bignum (a b)
3002 (if (cdr b)
3003 (let* ((alen (length a))
3004 (blen (length b))
3005 (d (/ 1000 (1+ (nth (1- blen) b))))
3006 (res (math-div-bignum-big (math-mul-bignum-digit a d 0)
3007 (math-mul-bignum-digit b d 0)
3008 alen blen)))
3009 (if (= d 1)
3010 res
3011 (cons (car res)
3012 (car (math-div-bignum-digit (cdr res) d)))))
3013 (let ((res (math-div-bignum-digit a (car b))))
3014 (cons (car res) (list (cdr res))))))
3015
3016 ;;; Divide a bignum digit list by a digit. [l.D l D]
3017 (defun math-div-bignum-digit (a b)
3018 (if a
3019 (let* ((res (math-div-bignum-digit (cdr a) b))
3020 (num (+ (* (cdr res) 1000) (car a))))
3021 (cons
3022 (cons (/ num b) (car res))
3023 (% num b)))
3024 '(nil . 0)))
3025
3026 (defun math-div-bignum-big (a b alen blen) ; [l.l l L]
3027 (if (< alen blen)
3028 (cons nil a)
3029 (let* ((res (math-div-bignum-big (cdr a) b (1- alen) blen))
3030 (num (cons (car a) (cdr res)))
3031 (res2 (math-div-bignum-part num b blen)))
3032 (cons
3033 (cons (car res2) (car res))
3034 (cdr res2)))))
3035
3036 (defun math-div-bignum-part (a b blen) ; a < b*1000 [D.l l L]
3037 (let* ((num (+ (* (or (nth blen a) 0) 1000) (or (nth (1- blen) a) 0)))
3038 (den (nth (1- blen) b))
3039 (guess (min (/ num den) 999)))
3040 (math-div-bignum-try a b (math-mul-bignum-digit b guess 0) guess)))
3041
3042 (defun math-div-bignum-try (a b c guess) ; [D.l l l D]
3043 (let ((rem (math-sub-bignum a c)))
3044 (if (eq rem 'neg)
3045 (math-div-bignum-try a b (math-sub-bignum c b) (1- guess))
3046 (cons guess rem))))
3047
3048
3049 ;;; Compute the quotient of A and B. [O O N] [Public]
3050 (defun math-div (a b)
3051 (or
3052 (and (Math-zerop b)
3053 (require 'calc-ext)
3054 (math-div-by-zero a b))
3055 (and (Math-zerop a) (not (eq (car-safe b) 'mod))
3056 (if (Math-scalarp b)
3057 (if (and (math-floatp b) (Math-ratp a)) (math-float a) a)
3058 (require 'calc-ext)
3059 (math-div-zero a b)))
3060 (and (Math-objvecp a) (Math-objvecp b)
3061 (or
3062 (and (Math-integerp a) (Math-integerp b)
3063 (let ((q (math-idivmod a b)))
3064 (if (eq (cdr q) 0)
3065 (car q)
3066 (if calc-prefer-frac
3067 (progn
3068 (require 'calc-ext)
3069 (math-make-frac a b))
3070 (math-div-float (math-make-float a 0)
3071 (math-make-float b 0))))))
3072 (and (Math-ratp a) (Math-ratp b)
3073 (require 'calc-ext)
3074 (calc-div-fractions a b))
3075 (and (Math-realp a) (Math-realp b)
3076 (progn
3077 (or (and (consp a) (eq (car a) 'float))
3078 (setq a (math-float a)))
3079 (or (and (consp b) (eq (car b) 'float))
3080 (setq b (math-float b)))
3081 (math-div-float a b)))
3082 (and (require 'calc-ext)
3083 (math-div-objects-fancy a b))))
3084 (and (require 'calc-ext)
3085 (math-div-symb-fancy a b))))
3086
3087 (defun math-div-float (a b) ; [F F F]
3088 (let ((ldiff (max (- (1+ calc-internal-prec)
3089 (- (math-numdigs (nth 1 a)) (math-numdigs (nth 1 b))))
3090 0)))
3091 (math-make-float (math-quotient (math-scale-int (nth 1 a) ldiff) (nth 1 b))
3092 (- (- (nth 2 a) (nth 2 b)) ldiff))))
3093
3094
3095
3096
3097 (defvar calc-selection-cache-entry)
3098 ;;; Format the number A as a string. [X N; X Z] [Public]
3099 (defun math-format-stack-value (entry)
3100 (setq calc-selection-cache-entry calc-selection-cache-default-entry)
3101 (let* ((a (car entry))
3102 (math-comp-selected (nth 2 entry))
3103 (c (cond ((null a) "<nil>")
3104 ((eq calc-display-raw t) (format "%s" a))
3105 ((stringp a) a)
3106 ((eq a 'top-of-stack) (propertize "." 'font-lock-face 'bold))
3107 (calc-prepared-composition
3108 calc-prepared-composition)
3109 ((and (Math-scalarp a)
3110 (memq calc-language '(nil flat unform))
3111 (null math-comp-selected))
3112 (math-format-number a))
3113 (t (require 'calc-ext)
3114 (math-compose-expr a 0))))
3115 (off (math-stack-value-offset c))
3116 s w)
3117 (and math-comp-selected (setq calc-any-selections t))
3118 (setq w (cdr off)
3119 off (car off))
3120 (when (> off 0)
3121 (setq c (math-comp-concat (make-string off ?\s) c)))
3122 (or (equal calc-left-label "")
3123 (setq c (math-comp-concat (if (eq a 'top-of-stack)
3124 (make-string (length calc-left-label) ?\s)
3125 calc-left-label)
3126 c)))
3127 (when calc-line-numbering
3128 (setq c (math-comp-concat (if (eq calc-language 'big)
3129 (if math-comp-selected
3130 '(tag t "1: ")
3131 "1: ")
3132 " ")
3133 c)))
3134 (unless (or (equal calc-right-label "")
3135 (eq a 'top-of-stack))
3136 (require 'calc-ext)
3137 (setq c (list 'horiz c
3138 (make-string (max (- w (math-comp-width c)
3139 (length calc-right-label)) 0) ?\s)
3140 '(break -1)
3141 calc-right-label)))
3142 (setq s (if (stringp c)
3143 (if calc-display-raw
3144 (prin1-to-string c)
3145 c)
3146 (math-composition-to-string c w)))
3147 (when calc-language-output-filter
3148 (setq s (funcall calc-language-output-filter s)))
3149 (if (eq calc-language 'big)
3150 (setq s (concat s "\n"))
3151 (when calc-line-numbering
3152 (setq s (concat "1:" (substring s 2)))))
3153 (setcar (cdr entry) (calc-count-lines s))
3154 s))
3155
3156 ;; The variables math-svo-c, math-svo-wid and math-svo-off are local
3157 ;; to math-stack-value-offset, but are used by math-stack-value-offset-fancy
3158 ;; in calccomp.el.
3159
3160 (defun math-stack-value-offset (math-svo-c)
3161 (let* ((num (if calc-line-numbering 4 0))
3162 (math-svo-wid (calc-window-width))
3163 math-svo-off)
3164 (if calc-display-just
3165 (progn
3166 (require 'calc-ext)
3167 (math-stack-value-offset-fancy))
3168 (setq math-svo-off (or calc-display-origin 0))
3169 (when (integerp calc-line-breaking)
3170 (setq math-svo-wid calc-line-breaking)))
3171 (cons (max (- math-svo-off (length calc-left-label)) 0)
3172 (+ math-svo-wid num))))
3173
3174 (defun calc-count-lines (s)
3175 (let ((pos 0)
3176 (num 1))
3177 (while (setq pos (string-match "\n" s pos))
3178 (setq pos (1+ pos)
3179 num (1+ num)))
3180 num))
3181
3182 (defun math-format-value (a &optional w)
3183 (if (and (Math-scalarp a)
3184 (memq calc-language '(nil flat unform)))
3185 (math-format-number a)
3186 (require 'calc-ext)
3187 (let ((calc-line-breaking nil))
3188 (math-composition-to-string (math-compose-expr a 0) w))))
3189
3190 (defun calc-window-width ()
3191 (if calc-embedded-info
3192 (let ((win (get-buffer-window (aref calc-embedded-info 0))))
3193 (1- (if win (window-width win) (frame-width))))
3194 (- (window-width (get-buffer-window (current-buffer)))
3195 (if calc-line-numbering 5 1))))
3196
3197 (defun math-comp-concat (c1 c2)
3198 (if (and (stringp c1) (stringp c2))
3199 (concat c1 c2)
3200 (list 'horiz c1 c2)))
3201
3202
3203
3204 ;;; Format an expression as a one-line string suitable for re-reading.
3205
3206 (defun math-format-flat-expr (a prec)
3207 (cond
3208 ((or (not (or (consp a) (integerp a)))
3209 (eq calc-display-raw t))
3210 (let ((print-escape-newlines t))
3211 (concat "'" (prin1-to-string a))))
3212 ((Math-scalarp a)
3213 (let ((calc-group-digits nil)
3214 (calc-point-char ".")
3215 (calc-frac-format (if (> (length (car calc-frac-format)) 1)
3216 '("::" nil) '(":" nil)))
3217 (calc-complex-format nil)
3218 (calc-hms-format "%s@ %s' %s\"")
3219 (calc-language nil))
3220 (math-format-number a)))
3221 (t
3222 (require 'calc-ext)
3223 (math-format-flat-expr-fancy a prec))))
3224
3225
3226
3227 ;;; Format a number as a string.
3228 (defun math-format-number (a &optional prec) ; [X N] [Public]
3229 (cond
3230 ((eq calc-display-raw t) (format "%s" a))
3231 ((and (nth 1 calc-frac-format) (Math-integerp a))
3232 (require 'calc-ext)
3233 (math-format-number (math-adjust-fraction a)))
3234 ((integerp a)
3235 (if (not (or calc-group-digits calc-leading-zeros))
3236 (if (= calc-number-radix 10)
3237 (int-to-string a)
3238 (if (< a 0)
3239 (concat "-" (math-format-number (- a)))
3240 (require 'calc-ext)
3241 (if math-radix-explicit-format
3242 (if calc-radix-formatter
3243 (funcall calc-radix-formatter
3244 calc-number-radix
3245 (if (= calc-number-radix 2)
3246 (math-format-binary a)
3247 (math-format-radix a)))
3248 (format "%d#%s" calc-number-radix
3249 (if (= calc-number-radix 2)
3250 (math-format-binary a)
3251 (math-format-radix a))))
3252 (math-format-radix a))))
3253 (math-format-number (math-bignum a))))
3254 ((stringp a) a)
3255 ((not (consp a)) (prin1-to-string a))
3256 ((eq (car a) 'bigpos) (math-format-bignum (cdr a)))
3257 ((eq (car a) 'bigneg) (concat "-" (math-format-bignum (cdr a))))
3258 ((and (eq (car a) 'float) (= calc-number-radix 10))
3259 (if (Math-integer-negp (nth 1 a))
3260 (concat "-" (math-format-number (math-neg a)))
3261 (let ((mant (nth 1 a))
3262 (exp (nth 2 a))
3263 (fmt (car calc-float-format))
3264 (figs (nth 1 calc-float-format))
3265 (point calc-point-char)
3266 str)
3267 (if (and (eq fmt 'fix)
3268 (or (and (< figs 0) (setq figs (- figs)))
3269 (> (+ exp (math-numdigs mant)) (- figs))))
3270 (progn
3271 (setq mant (math-scale-rounding mant (+ exp figs))
3272 str (if (integerp mant)
3273 (int-to-string mant)
3274 (math-format-bignum-decimal (cdr mant))))
3275 (if (<= (length str) figs)
3276 (setq str (concat (make-string (1+ (- figs (length str))) ?0)
3277 str)))
3278 (if (> figs 0)
3279 (setq str (concat (substring str 0 (- figs)) point
3280 (substring str (- figs))))
3281 (setq str (concat str point)))
3282 (when calc-group-digits
3283 (require 'calc-ext)
3284 (setq str (math-group-float str))))
3285 (when (< figs 0)
3286 (setq figs (+ calc-internal-prec figs)))
3287 (when (> figs 0)
3288 (let ((adj (- figs (math-numdigs mant))))
3289 (when (< adj 0)
3290 (setq mant (math-scale-rounding mant adj)
3291 exp (- exp adj)))))
3292 (setq str (if (integerp mant)
3293 (int-to-string mant)
3294 (math-format-bignum-decimal (cdr mant))))
3295 (let* ((len (length str))
3296 (dpos (+ exp len)))
3297 (if (and (eq fmt 'float)
3298 (<= dpos (+ calc-internal-prec calc-display-sci-high))
3299 (>= dpos (+ calc-display-sci-low 2)))
3300 (progn
3301 (cond
3302 ((= dpos 0)
3303 (setq str (concat "0" point str)))
3304 ((and (<= exp 0) (> dpos 0))
3305 (setq str (concat (substring str 0 dpos) point
3306 (substring str dpos))))
3307 ((> exp 0)
3308 (setq str (concat str (make-string exp ?0) point)))
3309 (t ; (< dpos 0)
3310 (setq str (concat "0" point
3311 (make-string (- dpos) ?0) str))))
3312 (when calc-group-digits
3313 (require 'calc-ext)
3314 (setq str (math-group-float str))))
3315 (let* ((eadj (+ exp len))
3316 (scale (if (eq fmt 'eng)
3317 (1+ (math-mod (+ eadj 300002) 3))
3318 1)))
3319 (if (> scale (length str))
3320 (setq str (concat str (make-string (- scale (length str))
3321 ?0))))
3322 (if (< scale (length str))
3323 (setq str (concat (substring str 0 scale) point
3324 (substring str scale))))
3325 (when calc-group-digits
3326 (require 'calc-ext)
3327 (setq str (math-group-float str)))
3328 (setq str (format (if (memq calc-language '(math maple))
3329 (if (and prec (> prec 191))
3330 "(%s*10.^%d)" "%s*10.^%d")
3331 "%se%d")
3332 str (- eadj scale)))))))
3333 str)))
3334 (t
3335 (require 'calc-ext)
3336 (math-format-number-fancy a prec))))
3337
3338 (defun math-format-bignum (a) ; [X L]
3339 (if (and (= calc-number-radix 10)
3340 (not calc-leading-zeros)
3341 (not calc-group-digits))
3342 (math-format-bignum-decimal a)
3343 (require 'calc-ext)
3344 (math-format-bignum-fancy a)))
3345
3346 (defun math-format-bignum-decimal (a) ; [X L]
3347 (if a
3348 (let ((s ""))
3349 (while (cdr (cdr a))
3350 (setq s (concat (format "%06d" (+ (* (nth 1 a) 1000) (car a))) s)
3351 a (cdr (cdr a))))
3352 (concat (int-to-string (+ (* (or (nth 1 a) 0) 1000) (car a))) s))
3353 "0"))
3354
3355
3356
3357 ;;; Parse a simple number in string form. [N X] [Public]
3358 (defun math-read-number (s)
3359 (math-normalize
3360 (cond
3361
3362 ;; Integers (most common case)
3363 ((string-match "\\` *\\([0-9]+\\) *\\'" s)
3364 (let ((digs (math-match-substring s 1)))
3365 (if (and (eq calc-language 'c)
3366 (> (length digs) 1)
3367 (eq (aref digs 0) ?0))
3368 (math-read-number (concat "8#" digs))
3369 (if (<= (length digs) 6)
3370 (string-to-number digs)
3371 (cons 'bigpos (math-read-bignum digs))))))
3372
3373 ;; Clean up the string if necessary
3374 ((string-match "\\`\\(.*\\)[ \t\n]+\\([^\001]*\\)\\'" s)
3375 (math-read-number (concat (math-match-substring s 1)
3376 (math-match-substring s 2))))
3377
3378 ;; Plus and minus signs
3379 ((string-match "^[-_+]\\(.*\\)$" s)
3380 (let ((val (math-read-number (math-match-substring s 1))))
3381 (and val (if (eq (aref s 0) ?+) val (math-neg val)))))
3382
3383 ;; Forms that require extensions module
3384 ((string-match "[^-+0-9eE.]" s)
3385 (require 'calc-ext)
3386 (math-read-number-fancy s))
3387
3388 ;; Decimal point
3389 ((string-match "^\\([0-9]*\\)\\.\\([0-9]*\\)$" s)
3390 (let ((int (math-match-substring s 1))
3391 (frac (math-match-substring s 2)))
3392 (let ((ilen (length int))
3393 (flen (length frac)))
3394 (let ((int (if (> ilen 0) (math-read-number int) 0))
3395 (frac (if (> flen 0) (math-read-number frac) 0)))
3396 (and int frac (or (> ilen 0) (> flen 0))
3397 (list 'float
3398 (math-add (math-scale-int int flen) frac)
3399 (- flen)))))))
3400
3401 ;; "e" notation
3402 ((string-match "^\\(.*\\)[eE]\\([-+]?[0-9]+\\)$" s)
3403 (let ((mant (math-match-substring s 1))
3404 (exp (math-match-substring s 2)))
3405 (let ((mant (if (> (length mant) 0) (math-read-number mant) 1))
3406 (exp (if (<= (length exp) (if (memq (aref exp 0) '(?+ ?-)) 8 7))
3407 (string-to-number exp))))
3408 (and mant exp (Math-realp mant) (> exp -4000000) (< exp 4000000)
3409 (let ((mant (math-float mant)))
3410 (list 'float (nth 1 mant) (+ (nth 2 mant) exp)))))))
3411
3412 ;; Syntax error!
3413 (t nil))))
3414
3415 (defun math-match-substring (s n)
3416 (if (match-beginning n)
3417 (substring s (match-beginning n) (match-end n))
3418 ""))
3419
3420 (defun math-read-bignum (s) ; [l X]
3421 (if (> (length s) 3)
3422 (cons (string-to-number (substring s -3))
3423 (math-read-bignum (substring s 0 -3)))
3424 (list (string-to-number s))))
3425
3426
3427 (defconst math-tex-ignore-words
3428 '( ("\\hbox") ("\\mbox") ("\\text") ("\\left") ("\\right")
3429 ("\\,") ("\\>") ("\\:") ("\\;") ("\\!") ("\\ ")
3430 ("\\quad") ("\\qquad") ("\\hfil") ("\\hfill")
3431 ("\\displaystyle") ("\\textstyle") ("\\dsize") ("\\tsize")
3432 ("\\scriptstyle") ("\\scriptscriptstyle") ("\\ssize") ("\\sssize")
3433 ("\\rm") ("\\bf") ("\\it") ("\\sl")
3434 ("\\roman") ("\\bold") ("\\italic") ("\\slanted")
3435 ("\\cal") ("\\mit") ("\\Cal") ("\\Bbb") ("\\frak") ("\\goth")
3436 ("\\evalto")
3437 ("\\matrix" mat) ("\\bmatrix" mat) ("\\pmatrix" mat)
3438 ("\\begin" begenv)
3439 ("\\cr" punc ";") ("\\\\" punc ";") ("\\*" punc "*")
3440 ("\\{" punc "[") ("\\}" punc "]")))
3441
3442 (defconst math-latex-ignore-words
3443 (append math-tex-ignore-words
3444 '(("\\begin" begenv))))
3445
3446 (defconst math-eqn-ignore-words
3447 '( ("roman") ("bold") ("italic") ("mark") ("lineup") ("evalto")
3448 ("left" ("floor") ("ceil"))
3449 ("right" ("floor") ("ceil"))
3450 ("arc" ("sin") ("cos") ("tan") ("sinh") ("cosh") ("tanh"))
3451 ("size" n) ("font" n) ("fwd" n) ("back" n) ("up" n) ("down" n)
3452 ("above" punc ",")))
3453
3454 (defconst math-standard-opers
3455 '( ( "_" calcFunc-subscr 1200 1201 )
3456 ( "%" calcFunc-percent 1100 -1 )
3457 ( "u+" ident -1 1000 )
3458 ( "u-" neg -1 1000 197 )
3459 ( "u!" calcFunc-lnot -1 1000 )
3460 ( "mod" mod 400 400 185 )
3461 ( "+/-" sdev 300 300 185 )
3462 ( "!!" calcFunc-dfact 210 -1 )
3463 ( "!" calcFunc-fact 210 -1 )
3464 ( "^" ^ 201 200 )
3465 ( "**" ^ 201 200 )
3466 ( "*" * 196 195 )
3467 ( "2x" * 196 195 )
3468 ( "/" / 190 191 )
3469 ( "%" % 190 191 )
3470 ( "\\" calcFunc-idiv 190 191 )
3471 ( "+" + 180 181 )
3472 ( "-" - 180 181 )
3473 ( "|" | 170 171 )
3474 ( "<" calcFunc-lt 160 161 )
3475 ( ">" calcFunc-gt 160 161 )
3476 ( "<=" calcFunc-leq 160 161 )
3477 ( ">=" calcFunc-geq 160 161 )
3478 ( "=" calcFunc-eq 160 161 )
3479 ( "==" calcFunc-eq 160 161 )
3480 ( "!=" calcFunc-neq 160 161 )
3481 ( "&&" calcFunc-land 110 111 )
3482 ( "||" calcFunc-lor 100 101 )
3483 ( "?" (math-read-if) 91 90 )
3484 ( "!!!" calcFunc-pnot -1 85 )
3485 ( "&&&" calcFunc-pand 80 81 )
3486 ( "|||" calcFunc-por 75 76 )
3487 ( ":=" calcFunc-assign 51 50 )
3488 ( "::" calcFunc-condition 45 46 )
3489 ( "=>" calcFunc-evalto 40 41 )
3490 ( "=>" calcFunc-evalto 40 -1 )))
3491 (defvar math-expr-opers math-standard-opers)
3492
3493 ;;;###autoload
3494 (defun calc-grab-region (top bot arg)
3495 "Parse the region as a vector of numbers and push it on the Calculator stack."
3496 (interactive "r\nP")
3497 (require 'calc-ext)
3498 (calc-do-grab-region top bot arg))
3499
3500 ;;;###autoload
3501 (defun calc-grab-rectangle (top bot arg)
3502 "Parse a rectangle as a matrix of numbers and push it on the Calculator stack."
3503 (interactive "r\nP")
3504 (require 'calc-ext)
3505 (calc-do-grab-rectangle top bot arg))
3506
3507 (defun calc-grab-sum-down (top bot arg)
3508 "Parse a rectangle as a matrix of numbers and sum its columns."
3509 (interactive "r\nP")
3510 (require 'calc-ext)
3511 (calc-do-grab-rectangle top bot arg 'calcFunc-reduced))
3512
3513 (defun calc-grab-sum-across (top bot arg)
3514 "Parse a rectangle as a matrix of numbers and sum its rows."
3515 (interactive "r\nP")
3516 (require 'calc-ext)
3517 (calc-do-grab-rectangle top bot arg 'calcFunc-reducea))
3518
3519
3520 ;;;###autoload
3521 (defun calc-embedded (arg &optional end obeg oend)
3522 "Start Calc Embedded mode on the formula surrounding point."
3523 (interactive "P")
3524 (require 'calc-ext)
3525 (calc-do-embedded arg end obeg oend))
3526
3527 ;;;###autoload
3528 (defun calc-embedded-activate (&optional arg cbuf)
3529 "Scan the current editing buffer for all embedded := and => formulas.
3530 Also looks for the equivalent TeX words, \\gets and \\evalto."
3531 (interactive "P")
3532 (calc-do-embedded-activate arg cbuf))
3533
3534 (defun calc-user-invocation ()
3535 (interactive)
3536 (unless calc-invocation-macro
3537 (error "Use `Z I' inside Calc to define a `M-# Z' keyboard macro"))
3538 (execute-kbd-macro calc-invocation-macro nil))
3539
3540 ;;; User-programmability.
3541
3542 ;;;###autoload
3543 (defmacro defmath (func args &rest body) ; [Public]
3544 (require 'calc-ext)
3545 (math-do-defmath func args body))
3546
3547 ;;; Functions needed for Lucid Emacs support.
3548
3549 (defun calc-read-key (&optional optkey)
3550 (cond (calc-emacs-type-lucid
3551 (let ((event (next-command-event)))
3552 (let ((key (event-to-character event t t)))
3553 (or key optkey (error "Expected a plain keystroke"))
3554 (cons key event))))
3555 (t
3556 (let ((key (read-event)))
3557 (cons key key)))))
3558
3559 (defun calc-unread-command (&optional input)
3560 (if (featurep 'xemacs)
3561 (setq unread-command-event
3562 (if (integerp input) (character-to-event input)
3563 (or input last-command-event)))
3564 (push (or input last-command-event) unread-command-events)))
3565
3566 (defun calc-clear-unread-commands ()
3567 (if (featurep 'xemacs)
3568 (calc-emacs-type-lucid (setq unread-command-event nil))
3569 (setq unread-command-events nil)))
3570
3571 (when calc-always-load-extensions
3572 (require 'calc-ext)
3573 (calc-load-everything))
3574
3575
3576 (run-hooks 'calc-load-hook)
3577
3578 (provide 'calc)
3579
3580 ;;; arch-tag: 0c3b170c-4ce6-4eaf-8d9b-5834d1fe938f
3581 ;;; calc.el ends here