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