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