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