forked from emacs-mirror/emacs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalc-ext.el
3465 lines (3105 loc) · 128 KB
/
calc-ext.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
;;; calc-ext.el --- various extension functions for Calc -*- lexical-binding:t -*-
;; Copyright (C) 1990-1993, 2001-2020 Free Software Foundation, Inc.
;; Author: David Gillespie <[email protected]>
;; This file is part of GNU Emacs.
;; GNU Emacs is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; GNU Emacs is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;;; Code:
(require 'calc)
(require 'calc-macs)
(require 'cl-lib)
;; Declare functions which are defined elsewhere.
(declare-function math-clip "calc-bin" (a &optional w))
(declare-function math-round "calc-arith" (a &optional prec))
(declare-function math-simplify "calc-alg" (top-expr))
(declare-function math-simplify-extended "calc-alg" (a))
(declare-function math-simplify-units "calc-units" (a))
(declare-function calc-set-language "calc-lang" (lang &optional option no-refresh))
(declare-function calc-flush-caches "calc-stuff" (&optional inhibit-msg))
(declare-function calc-save-modes "calc-mode" ())
(declare-function calc-embedded-modes-change "calc-embed" (vars))
(declare-function calc-embedded-var-change "calc-embed" (var &optional buf))
(declare-function math-mul-float "calc-arith" (a b))
(declare-function math-arctan-raw "calc-math" (x))
(declare-function math-sqrt-raw "calc-math" (a &optional guess))
(declare-function math-sqrt-float "calc-math" (a &optional guess))
(declare-function math-exp-minus-1-raw "calc-math" (x))
(declare-function math-normalize-polar "calc-cplx" (a))
(declare-function math-normalize-hms "calc-forms" (a))
(declare-function math-normalize-mod "calc-forms" (a))
(declare-function math-make-sdev "calc-forms" (x sigma))
(declare-function math-make-intv "calc-forms" (mask lo hi))
(declare-function math-normalize-logical-op "calc-prog" (a))
(declare-function math-possible-signs "calc-arith" (a &optional origin))
(declare-function math-infinite-dir "calc-math" (a &optional inf))
(declare-function math-calcFunc-to-var "calc-map" (f))
(declare-function calc-embedded-evaluate-expr "calc-embed" (x))
(declare-function math-known-nonzerop "calc-arith" (a))
(declare-function math-read-expr-level "calc-aent" (exp-prec &optional exp-term))
(declare-function math-read-big-rec "calc-lang" (math-rb-h1 math-rb-v1 math-rb-h2 math-rb-v2 &optional baseline prec short))
(declare-function math-read-big-balance "calc-lang" (h v what &optional commas))
(declare-function math-format-date "calc-forms" (math-fd-date))
(declare-function math-vector-is-string "calccomp" (a))
(declare-function math-vector-to-string "calccomp" (a &optional quoted))
(declare-function math-format-radix-float "calc-bin" (a prec))
(declare-function math-compose-expr "calccomp" (a prec &optional div))
(declare-function math-abs "calc-arith" (a))
(declare-function math-format-binary "calc-bin" (a))
(declare-function math-format-radix "calc-bin" (a))
(declare-function math-compute-max-digits "calc-bin" (w r))
(declare-function math-map-vec "calc-vec" (f a))
(declare-function math-make-frac "calc-frac" (num den))
(defvar math-simplifying nil)
(defvar math-living-dangerously nil) ; true if unsafe simplifications are okay.
(defvar math-integrating nil)
(defvar math-rewrite-selections nil)
(defvar math-compose-level 0)
(defvar math-comp-selected nil)
(defvar math-comp-tagged nil)
(defvar math-comp-sel-hpos nil)
(defvar math-comp-sel-vpos nil)
(defvar math-comp-sel-cpos nil)
(defvar math-compose-hash-args nil)
(defvar calc-alg-map)
(defvar calc-alg-esc-map)
;; The following was made a function so that it could be byte-compiled.
(defun calc-init-extensions ()
(define-key calc-mode-map ":" 'calc-fdiv)
(define-key calc-mode-map "\\" 'calc-idiv)
(define-key calc-mode-map "|" 'calc-concat)
(define-key calc-mode-map "!" 'calc-factorial)
(define-key calc-mode-map "C" 'calc-cos)
(define-key calc-mode-map "E" 'calc-exp)
(define-key calc-mode-map "H" 'calc-hyperbolic)
(define-key calc-mode-map "I" 'calc-inverse)
(define-key calc-mode-map "J" 'calc-conj)
(define-key calc-mode-map "L" 'calc-ln)
(define-key calc-mode-map "N" 'calc-eval-num)
(define-key calc-mode-map "O" 'calc-option)
(define-key calc-mode-map "P" 'calc-pi)
(define-key calc-mode-map "Q" 'calc-sqrt)
(define-key calc-mode-map "R" 'calc-round)
(define-key calc-mode-map "S" 'calc-sin)
(define-key calc-mode-map "T" 'calc-tan)
(define-key calc-mode-map "U" 'calc-undo)
(define-key calc-mode-map "X" 'calc-call-last-kbd-macro)
(define-key calc-mode-map "o" 'calc-realign)
(define-key calc-mode-map "p" 'calc-precision)
(define-key calc-mode-map "w" 'calc-why)
(define-key calc-mode-map "x" 'calc-execute-extended-command)
(define-key calc-mode-map "y" 'calc-copy-to-buffer)
(define-key calc-mode-map "(" 'calc-begin-complex)
(define-key calc-mode-map ")" 'calc-end-complex)
(define-key calc-mode-map "[" 'calc-begin-vector)
(define-key calc-mode-map "]" 'calc-end-vector)
(define-key calc-mode-map "," 'calc-comma)
(define-key calc-mode-map ";" 'calc-semi)
(define-key calc-mode-map "`" 'calc-edit)
(define-key calc-mode-map "=" 'calc-evaluate)
(define-key calc-mode-map "~" 'calc-num-prefix)
(define-key calc-mode-map "<" 'calc-scroll-left)
(define-key calc-mode-map ">" 'calc-scroll-right)
(define-key calc-mode-map "{" 'calc-scroll-down)
(define-key calc-mode-map "}" 'calc-scroll-up)
(define-key calc-mode-map "\C-k" 'calc-kill)
(define-key calc-mode-map "\M-k" 'calc-copy-as-kill)
(define-key calc-mode-map "\C-w" 'calc-kill-region)
(define-key calc-mode-map "\M-w" 'calc-copy-region-as-kill)
(define-key calc-mode-map "\M-\C-w" 'kill-ring-save)
(define-key calc-mode-map "\M-\C-m" 'calc-last-args)
(define-key calc-mode-map "a" nil)
(define-key calc-mode-map "a?" 'calc-a-prefix-help)
(define-key calc-mode-map "aa" 'calc-apart)
(define-key calc-mode-map "ab" 'calc-substitute)
(define-key calc-mode-map "ac" 'calc-collect)
(define-key calc-mode-map "ad" 'calc-derivative)
(define-key calc-mode-map "ae" 'calc-simplify-extended)
(define-key calc-mode-map "af" 'calc-factor)
(define-key calc-mode-map "ag" 'calc-poly-gcd)
(define-key calc-mode-map "ai" 'calc-integral)
(define-key calc-mode-map "am" 'calc-match)
(define-key calc-mode-map "an" 'calc-normalize-rat)
(define-key calc-mode-map "ap" 'calc-poly-interp)
(define-key calc-mode-map "ar" 'calc-rewrite)
(define-key calc-mode-map "as" 'calc-simplify)
(define-key calc-mode-map "at" 'calc-taylor)
(define-key calc-mode-map "av" 'calc-alg-evaluate)
(define-key calc-mode-map "ax" 'calc-expand)
(define-key calc-mode-map "aA" 'calc-abs)
(define-key calc-mode-map "aF" 'calc-curve-fit)
(define-key calc-mode-map "aI" 'calc-num-integral)
(define-key calc-mode-map "aM" 'calc-map-equation)
(define-key calc-mode-map "aN" 'calc-find-minimum)
(define-key calc-mode-map "aP" 'calc-poly-roots)
(define-key calc-mode-map "aS" 'calc-solve-for)
(define-key calc-mode-map "aR" 'calc-find-root)
(define-key calc-mode-map "aT" 'calc-tabulate)
(define-key calc-mode-map "aX" 'calc-find-maximum)
(define-key calc-mode-map "a+" 'calc-summation)
(define-key calc-mode-map "a-" 'calc-alt-summation)
(define-key calc-mode-map "a*" 'calc-product)
(define-key calc-mode-map "a\\" 'calc-poly-div)
(define-key calc-mode-map "a%" 'calc-poly-rem)
(define-key calc-mode-map "a/" 'calc-poly-div-rem)
(define-key calc-mode-map "a=" 'calc-equal-to)
(define-key calc-mode-map "a#" 'calc-not-equal-to)
(define-key calc-mode-map "a<" 'calc-less-than)
(define-key calc-mode-map "a>" 'calc-greater-than)
(define-key calc-mode-map "a[" 'calc-less-equal)
(define-key calc-mode-map "a]" 'calc-greater-equal)
(define-key calc-mode-map "a." 'calc-remove-equal)
(define-key calc-mode-map "a{" 'calc-in-set)
(define-key calc-mode-map "a&" 'calc-logical-and)
(define-key calc-mode-map "a|" 'calc-logical-or)
(define-key calc-mode-map "a!" 'calc-logical-not)
(define-key calc-mode-map "a:" 'calc-logical-if)
(define-key calc-mode-map "a_" 'calc-subscript)
(define-key calc-mode-map "a\"" 'calc-expand-formula)
(define-key calc-mode-map "b" nil)
(define-key calc-mode-map "b?" 'calc-b-prefix-help)
(define-key calc-mode-map "ba" 'calc-and)
(define-key calc-mode-map "bc" 'calc-clip)
(define-key calc-mode-map "bd" 'calc-diff)
(define-key calc-mode-map "bl" 'calc-lshift-binary)
(define-key calc-mode-map "bn" 'calc-not)
(define-key calc-mode-map "bo" 'calc-or)
(define-key calc-mode-map "bp" 'calc-pack-bits)
(define-key calc-mode-map "br" 'calc-rshift-binary)
(define-key calc-mode-map "bt" 'calc-rotate-binary)
(define-key calc-mode-map "bu" 'calc-unpack-bits)
(define-key calc-mode-map "bw" 'calc-word-size)
(define-key calc-mode-map "bx" 'calc-xor)
(define-key calc-mode-map "bB" 'calc-log)
(define-key calc-mode-map "bD" 'calc-fin-ddb)
(define-key calc-mode-map "bF" 'calc-fin-fv)
(define-key calc-mode-map "bI" 'calc-fin-irr)
(define-key calc-mode-map "bL" 'calc-lshift-arith)
(define-key calc-mode-map "bM" 'calc-fin-pmt)
(define-key calc-mode-map "bN" 'calc-fin-npv)
(define-key calc-mode-map "bP" 'calc-fin-pv)
(define-key calc-mode-map "bR" 'calc-rshift-arith)
(define-key calc-mode-map "bS" 'calc-fin-sln)
(define-key calc-mode-map "bT" 'calc-fin-rate)
(define-key calc-mode-map "bY" 'calc-fin-syd)
(define-key calc-mode-map "b#" 'calc-fin-nper)
(define-key calc-mode-map "b%" 'calc-percent-change)
(define-key calc-mode-map "c" nil)
(define-key calc-mode-map "c?" 'calc-c-prefix-help)
(define-key calc-mode-map "cc" 'calc-clean)
(define-key calc-mode-map "cd" 'calc-to-degrees)
(define-key calc-mode-map "cf" 'calc-float)
(define-key calc-mode-map "ch" 'calc-to-hms)
(define-key calc-mode-map "cp" 'calc-polar)
(define-key calc-mode-map "cr" 'calc-to-radians)
(define-key calc-mode-map "cC" 'calc-cos)
(define-key calc-mode-map "cF" 'calc-fraction)
(define-key calc-mode-map "c%" 'calc-convert-percent)
(define-key calc-mode-map "d" nil)
(define-key calc-mode-map "d?" 'calc-d-prefix-help)
(define-key calc-mode-map "d0" 'calc-decimal-radix)
(define-key calc-mode-map "d2" 'calc-binary-radix)
(define-key calc-mode-map "d6" 'calc-hex-radix)
(define-key calc-mode-map "d8" 'calc-octal-radix)
(define-key calc-mode-map "db" 'calc-line-breaking)
(define-key calc-mode-map "dc" 'calc-complex-notation)
(define-key calc-mode-map "dd" 'calc-date-notation)
(define-key calc-mode-map "de" 'calc-eng-notation)
(define-key calc-mode-map "df" 'calc-fix-notation)
(define-key calc-mode-map "dg" 'calc-group-digits)
(define-key calc-mode-map "dh" 'calc-hms-notation)
(define-key calc-mode-map "di" 'calc-i-notation)
(define-key calc-mode-map "dj" 'calc-j-notation)
(define-key calc-mode-map "dl" 'calc-line-numbering)
(define-key calc-mode-map "dn" 'calc-normal-notation)
(define-key calc-mode-map "do" 'calc-over-notation)
(define-key calc-mode-map "dp" 'calc-show-plain)
(define-key calc-mode-map "dr" 'calc-radix)
(define-key calc-mode-map "ds" 'calc-sci-notation)
(define-key calc-mode-map "dt" 'calc-truncate-stack)
(define-key calc-mode-map "dw" 'calc-auto-why)
(define-key calc-mode-map "dz" 'calc-leading-zeros)
(define-key calc-mode-map "dA" 'calc-giac-language)
(define-key calc-mode-map "dB" 'calc-big-language)
(define-key calc-mode-map "dD" 'calc-redo)
(define-key calc-mode-map "dC" 'calc-c-language)
(define-key calc-mode-map "dE" 'calc-eqn-language)
(define-key calc-mode-map "dF" 'calc-fortran-language)
(define-key calc-mode-map "dM" 'calc-mathematica-language)
(define-key calc-mode-map "dN" 'calc-normal-language)
(define-key calc-mode-map "dO" 'calc-flat-language)
(define-key calc-mode-map "dP" 'calc-pascal-language)
(define-key calc-mode-map "dT" 'calc-tex-language)
(define-key calc-mode-map "dL" 'calc-latex-language)
(define-key calc-mode-map "dU" 'calc-unformatted-language)
(define-key calc-mode-map "dW" 'calc-maple-language)
(define-key calc-mode-map "dX" 'calc-maxima-language)
(define-key calc-mode-map "dY" 'calc-yacas-language)
(define-key calc-mode-map "d[" 'calc-truncate-up)
(define-key calc-mode-map "d]" 'calc-truncate-down)
(define-key calc-mode-map "d." 'calc-point-char)
(define-key calc-mode-map "d," 'calc-group-char)
(define-key calc-mode-map "d\"" 'calc-display-strings)
(define-key calc-mode-map "d<" 'calc-left-justify)
(define-key calc-mode-map "d=" 'calc-center-justify)
(define-key calc-mode-map "d>" 'calc-right-justify)
(define-key calc-mode-map "d{" 'calc-left-label)
(define-key calc-mode-map "d}" 'calc-right-label)
(define-key calc-mode-map "d'" 'calc-display-raw)
(define-key calc-mode-map "d " 'calc-refresh)
(define-key calc-mode-map "d\r" 'calc-refresh-top)
(define-key calc-mode-map "d@" 'calc-toggle-banner)
(define-key calc-mode-map "f" nil)
(define-key calc-mode-map "f?" 'calc-f-prefix-help)
(define-key calc-mode-map "fb" 'calc-beta)
(define-key calc-mode-map "fe" 'calc-erf)
(define-key calc-mode-map "fg" 'calc-gamma)
(define-key calc-mode-map "fh" 'calc-hypot)
(define-key calc-mode-map "fi" 'calc-im)
(define-key calc-mode-map "fj" 'calc-bessel-J)
(define-key calc-mode-map "fn" 'calc-min)
(define-key calc-mode-map "fr" 'calc-re)
(define-key calc-mode-map "fs" 'calc-sign)
(define-key calc-mode-map "fx" 'calc-max)
(define-key calc-mode-map "fy" 'calc-bessel-Y)
(define-key calc-mode-map "fA" 'calc-abssqr)
(define-key calc-mode-map "fB" 'calc-inc-beta)
(define-key calc-mode-map "fE" 'calc-expm1)
(define-key calc-mode-map "fF" 'calc-floor)
(define-key calc-mode-map "fG" 'calc-inc-gamma)
(define-key calc-mode-map "fI" 'calc-ilog)
(define-key calc-mode-map "fL" 'calc-lnp1)
(define-key calc-mode-map "fM" 'calc-mant-part)
(define-key calc-mode-map "fQ" 'calc-isqrt)
(define-key calc-mode-map "fS" 'calc-scale-float)
(define-key calc-mode-map "fT" 'calc-arctan2)
(define-key calc-mode-map "fX" 'calc-xpon-part)
(define-key calc-mode-map "f[" 'calc-decrement)
(define-key calc-mode-map "f]" 'calc-increment)
(define-key calc-mode-map "g" nil)
(define-key calc-mode-map "g?" 'calc-g-prefix-help)
(define-key calc-mode-map "ga" 'calc-graph-add)
(define-key calc-mode-map "gb" 'calc-graph-border)
(define-key calc-mode-map "gc" 'calc-graph-clear)
(define-key calc-mode-map "gd" 'calc-graph-delete)
(define-key calc-mode-map "gf" 'calc-graph-fast)
(define-key calc-mode-map "gg" 'calc-graph-grid)
(define-key calc-mode-map "gh" 'calc-graph-header)
(define-key calc-mode-map "gk" 'calc-graph-key)
(define-key calc-mode-map "gj" 'calc-graph-juggle)
(define-key calc-mode-map "gl" 'calc-graph-log-x)
(define-key calc-mode-map "gn" 'calc-graph-name)
(define-key calc-mode-map "gp" 'calc-graph-plot)
(define-key calc-mode-map "gq" 'calc-graph-quit)
(define-key calc-mode-map "gr" 'calc-graph-range-x)
(define-key calc-mode-map "gs" 'calc-graph-line-style)
(define-key calc-mode-map "gt" 'calc-graph-title-x)
(define-key calc-mode-map "gv" 'calc-graph-view-commands)
(define-key calc-mode-map "gx" 'calc-graph-display)
(define-key calc-mode-map "gz" 'calc-graph-zero-x)
(define-key calc-mode-map "gA" 'calc-graph-add-3d)
(define-key calc-mode-map "gC" 'calc-graph-command)
(define-key calc-mode-map "gD" 'calc-graph-device)
(define-key calc-mode-map "gF" 'calc-graph-fast-3d)
(define-key calc-mode-map "gG" 'calc-argument)
(define-key calc-mode-map "gH" 'calc-graph-hide)
(define-key calc-mode-map "gK" 'calc-graph-kill)
(define-key calc-mode-map "gL" 'calc-graph-log-y)
(define-key calc-mode-map "gN" 'calc-graph-num-points)
(define-key calc-mode-map "gO" 'calc-graph-output)
(define-key calc-mode-map "gP" 'calc-graph-print)
(define-key calc-mode-map "gR" 'calc-graph-range-y)
(define-key calc-mode-map "gS" 'calc-graph-point-style)
(define-key calc-mode-map "gT" 'calc-graph-title-y)
(define-key calc-mode-map "gV" 'calc-graph-view-trail)
(define-key calc-mode-map "gX" 'calc-graph-geometry)
(define-key calc-mode-map "gZ" 'calc-graph-zero-y)
(define-key calc-mode-map "g\C-l" 'calc-graph-log-z)
(define-key calc-mode-map "g\C-r" 'calc-graph-range-z)
(define-key calc-mode-map "g\C-t" 'calc-graph-title-z)
(define-key calc-mode-map "h" 'calc-help-prefix)
(define-key calc-mode-map "j" nil)
(define-key calc-mode-map "j?" 'calc-j-prefix-help)
(define-key calc-mode-map "ja" 'calc-select-additional)
(define-key calc-mode-map "jb" 'calc-break-selections)
(define-key calc-mode-map "jc" 'calc-clear-selections)
(define-key calc-mode-map "jd" 'calc-show-selections)
(define-key calc-mode-map "je" 'calc-enable-selections)
(define-key calc-mode-map "jl" 'calc-select-less)
(define-key calc-mode-map "jm" 'calc-select-more)
(define-key calc-mode-map "jn" 'calc-select-next)
(define-key calc-mode-map "jo" 'calc-select-once)
(define-key calc-mode-map "jp" 'calc-select-previous)
(define-key calc-mode-map "jr" 'calc-rewrite-selection)
(define-key calc-mode-map "js" 'calc-select-here)
(define-key calc-mode-map "jv" 'calc-sel-evaluate)
(define-key calc-mode-map "ju" 'calc-unselect)
(define-key calc-mode-map "jC" 'calc-sel-commute)
(define-key calc-mode-map "jD" 'calc-sel-distribute)
(define-key calc-mode-map "jE" 'calc-sel-jump-equals)
(define-key calc-mode-map "jI" 'calc-sel-isolate)
(define-key calc-mode-map "jJ" 'calc-conj)
(define-key calc-mode-map "jL" 'calc-commute-left)
(define-key calc-mode-map "jM" 'calc-sel-merge)
(define-key calc-mode-map "jN" 'calc-sel-negate)
(define-key calc-mode-map "jO" 'calc-select-once-maybe)
(define-key calc-mode-map "jR" 'calc-commute-right)
(define-key calc-mode-map "jS" 'calc-select-here-maybe)
(define-key calc-mode-map "jU" 'calc-sel-unpack)
(define-key calc-mode-map "j&" 'calc-sel-invert)
(define-key calc-mode-map "j\r" 'calc-copy-selection)
(define-key calc-mode-map "j\n" 'calc-copy-selection)
(define-key calc-mode-map "j\010" 'calc-del-selection)
(define-key calc-mode-map "j\177" 'calc-del-selection)
(define-key calc-mode-map "j'" 'calc-enter-selection)
(define-key calc-mode-map "j`" 'calc-edit-selection)
(define-key calc-mode-map "j+" 'calc-sel-add-both-sides)
(define-key calc-mode-map "j-" 'calc-sel-sub-both-sides)
(define-key calc-mode-map "j*" 'calc-sel-mult-both-sides)
(define-key calc-mode-map "j/" 'calc-sel-div-both-sides)
(define-key calc-mode-map "j\"" 'calc-sel-expand-formula)
(define-key calc-mode-map "k" nil)
(define-key calc-mode-map "k?" 'calc-k-prefix-help)
(define-key calc-mode-map "ka" 'calc-random-again)
(define-key calc-mode-map "kb" 'calc-bernoulli-number)
(define-key calc-mode-map "kc" 'calc-choose)
(define-key calc-mode-map "kd" 'calc-double-factorial)
(define-key calc-mode-map "ke" 'calc-euler-number)
(define-key calc-mode-map "kf" 'calc-prime-factors)
(define-key calc-mode-map "kg" 'calc-gcd)
(define-key calc-mode-map "kh" 'calc-shuffle)
(define-key calc-mode-map "kl" 'calc-lcm)
(define-key calc-mode-map "km" 'calc-moebius)
(define-key calc-mode-map "kn" 'calc-next-prime)
(define-key calc-mode-map "kp" 'calc-prime-test)
(define-key calc-mode-map "kr" 'calc-random)
(define-key calc-mode-map "ks" 'calc-stirling-number)
(define-key calc-mode-map "kt" 'calc-totient)
(define-key calc-mode-map "kB" 'calc-utpb)
(define-key calc-mode-map "kC" 'calc-utpc)
(define-key calc-mode-map "kE" 'calc-extended-gcd)
(define-key calc-mode-map "kF" 'calc-utpf)
(define-key calc-mode-map "kK" 'calc-keep-args)
(define-key calc-mode-map "kN" 'calc-utpn)
(define-key calc-mode-map "kP" 'calc-utpp)
(define-key calc-mode-map "kT" 'calc-utpt)
(define-key calc-mode-map "l" nil)
(define-key calc-mode-map "lq" 'calc-lu-quant)
(define-key calc-mode-map "ld" 'calc-db)
(define-key calc-mode-map "ln" 'calc-np)
(define-key calc-mode-map "l+" 'calc-lu-plus)
(define-key calc-mode-map "l-" 'calc-lu-minus)
(define-key calc-mode-map "l*" 'calc-lu-times)
(define-key calc-mode-map "l/" 'calc-lu-divide)
(define-key calc-mode-map "ls" 'calc-spn)
(define-key calc-mode-map "lm" 'calc-midi)
(define-key calc-mode-map "lf" 'calc-freq)
(define-key calc-mode-map "l?" 'calc-l-prefix-help)
(define-key calc-mode-map "m" nil)
(define-key calc-mode-map "m?" 'calc-m-prefix-help)
(define-key calc-mode-map "ma" 'calc-algebraic-mode)
(define-key calc-mode-map "md" 'calc-degrees-mode)
(define-key calc-mode-map "me" 'calc-embedded-preserve-modes)
(define-key calc-mode-map "mf" 'calc-frac-mode)
(define-key calc-mode-map "mg" 'calc-get-modes)
(define-key calc-mode-map "mh" 'calc-hms-mode)
(define-key calc-mode-map "mi" 'calc-infinite-mode)
(define-key calc-mode-map "mm" 'calc-save-modes)
(define-key calc-mode-map "mp" 'calc-polar-mode)
(define-key calc-mode-map "mr" 'calc-radians-mode)
(define-key calc-mode-map "ms" 'calc-symbolic-mode)
(define-key calc-mode-map "mt" 'calc-total-algebraic-mode)
(define-key calc-mode-map "\emt" 'calc-total-algebraic-mode)
(define-key calc-mode-map "\em\et" 'calc-total-algebraic-mode)
(define-key calc-mode-map "mv" 'calc-matrix-mode)
(define-key calc-mode-map "mw" 'calc-working)
(define-key calc-mode-map "mx" 'calc-always-load-extensions)
(define-key calc-mode-map "mA" 'calc-alg-simplify-mode)
(define-key calc-mode-map "mB" 'calc-bin-simplify-mode)
(define-key calc-mode-map "mC" 'calc-auto-recompute)
(define-key calc-mode-map "mD" 'calc-default-simplify-mode)
(define-key calc-mode-map "mE" 'calc-ext-simplify-mode)
(define-key calc-mode-map "mF" 'calc-settings-file-name)
(define-key calc-mode-map "mI" 'calc-basic-simplify-mode)
(define-key calc-mode-map "mM" 'calc-more-recursion-depth)
(define-key calc-mode-map "mN" 'calc-num-simplify-mode)
(define-key calc-mode-map "mO" 'calc-no-simplify-mode)
(define-key calc-mode-map "mR" 'calc-mode-record-mode)
(define-key calc-mode-map "mS" 'calc-shift-prefix)
(define-key calc-mode-map "mU" 'calc-units-simplify-mode)
(define-key calc-mode-map "mX" 'calc-load-everything)
(define-key calc-mode-map "r" nil)
(define-key calc-mode-map "ri" 'calc-insert-register)
(define-key calc-mode-map "rs" 'calc-copy-to-register)
(define-key calc-mode-map "r?" 'calc-r-prefix-help)
(define-key calc-mode-map "s" nil)
(define-key calc-mode-map "s?" 'calc-s-prefix-help)
(define-key calc-mode-map "sc" 'calc-copy-variable)
(define-key calc-mode-map "sd" 'calc-declare-variable)
(define-key calc-mode-map "se" 'calc-edit-variable)
(define-key calc-mode-map "si" 'calc-insert-variables)
(define-key calc-mode-map "sk" 'calc-copy-special-constant)
(define-key calc-mode-map "sl" 'calc-let)
(define-key calc-mode-map "sm" 'calc-store-map)
(define-key calc-mode-map "sn" 'calc-store-neg)
(define-key calc-mode-map "sp" 'calc-permanent-variable)
(define-key calc-mode-map "sr" 'calc-recall)
(define-key calc-mode-map "ss" 'calc-store)
(define-key calc-mode-map "st" 'calc-store-into)
(define-key calc-mode-map "su" 'calc-unstore)
(define-key calc-mode-map "sx" 'calc-store-exchange)
(define-key calc-mode-map "sA" 'calc-edit-AlgSimpRules)
(define-key calc-mode-map "sD" 'calc-edit-Decls)
(define-key calc-mode-map "sE" 'calc-edit-EvalRules)
(define-key calc-mode-map "sF" 'calc-edit-FitRules)
(define-key calc-mode-map "sG" 'calc-edit-GenCount)
(define-key calc-mode-map "sH" 'calc-edit-Holidays)
(define-key calc-mode-map "sI" 'calc-edit-IntegLimit)
(define-key calc-mode-map "sL" 'calc-edit-LineStyles)
(define-key calc-mode-map "sP" 'calc-edit-PointStyles)
(define-key calc-mode-map "sR" 'calc-edit-PlotRejects)
(define-key calc-mode-map "sS" 'calc-sin)
(define-key calc-mode-map "sT" 'calc-edit-TimeZone)
(define-key calc-mode-map "sU" 'calc-edit-Units)
(define-key calc-mode-map "sX" 'calc-edit-ExtSimpRules)
(define-key calc-mode-map "s+" 'calc-store-plus)
(define-key calc-mode-map "s-" 'calc-store-minus)
(define-key calc-mode-map "s*" 'calc-store-times)
(define-key calc-mode-map "s/" 'calc-store-div)
(define-key calc-mode-map "s^" 'calc-store-power)
(define-key calc-mode-map "s|" 'calc-store-concat)
(define-key calc-mode-map "s&" 'calc-store-inv)
(define-key calc-mode-map "s[" 'calc-store-decr)
(define-key calc-mode-map "s]" 'calc-store-incr)
(define-key calc-mode-map "s:" 'calc-assign)
(define-key calc-mode-map "s=" 'calc-evalto)
(define-key calc-mode-map "t" nil)
(define-key calc-mode-map "t?" 'calc-t-prefix-help)
(define-key calc-mode-map "tb" 'calc-trail-backward)
(define-key calc-mode-map "td" 'calc-trail-display)
(define-key calc-mode-map "tf" 'calc-trail-forward)
(define-key calc-mode-map "th" 'calc-trail-here)
(define-key calc-mode-map "ti" 'calc-trail-in)
(define-key calc-mode-map "tk" 'calc-trail-kill)
(define-key calc-mode-map "tm" 'calc-trail-marker)
(define-key calc-mode-map "tn" 'calc-trail-next)
(define-key calc-mode-map "to" 'calc-trail-out)
(define-key calc-mode-map "tp" 'calc-trail-previous)
(define-key calc-mode-map "tr" 'calc-trail-isearch-backward)
(define-key calc-mode-map "ts" 'calc-trail-isearch-forward)
(define-key calc-mode-map "ty" 'calc-trail-yank)
(define-key calc-mode-map "t[" 'calc-trail-first)
(define-key calc-mode-map "t]" 'calc-trail-last)
(define-key calc-mode-map "t<" 'calc-trail-scroll-left)
(define-key calc-mode-map "t>" 'calc-trail-scroll-right)
(define-key calc-mode-map "t{" 'calc-trail-backward)
(define-key calc-mode-map "t}" 'calc-trail-forward)
(define-key calc-mode-map "t." 'calc-full-trail-vectors)
(define-key calc-mode-map "tC" 'calc-convert-time-zones)
(define-key calc-mode-map "tD" 'calc-date)
(define-key calc-mode-map "tI" 'calc-inc-month)
(define-key calc-mode-map "tJ" 'calc-julian)
(define-key calc-mode-map "tM" 'calc-new-month)
(define-key calc-mode-map "tN" 'calc-now)
(define-key calc-mode-map "tP" 'calc-date-part)
(define-key calc-mode-map "tT" 'calc-tan)
(define-key calc-mode-map "tU" 'calc-unix-time)
(define-key calc-mode-map "tW" 'calc-new-week)
(define-key calc-mode-map "tY" 'calc-new-year)
(define-key calc-mode-map "tZ" 'calc-time-zone)
(define-key calc-mode-map "t+" 'calc-business-days-plus)
(define-key calc-mode-map "t-" 'calc-business-days-minus)
(define-key calc-mode-map "u" 'nil)
(define-key calc-mode-map "u?" 'calc-u-prefix-help)
(define-key calc-mode-map "ua" 'calc-autorange-units)
(define-key calc-mode-map "ub" 'calc-base-units)
(define-key calc-mode-map "uc" 'calc-convert-units)
(define-key calc-mode-map "ud" 'calc-define-unit)
(define-key calc-mode-map "ue" 'calc-explain-units)
(define-key calc-mode-map "ug" 'calc-get-unit-definition)
(define-key calc-mode-map "un" 'calc-convert-exact-units)
(define-key calc-mode-map "up" 'calc-permanent-units)
(define-key calc-mode-map "ur" 'calc-remove-units)
(define-key calc-mode-map "us" 'calc-simplify-units)
(define-key calc-mode-map "ut" 'calc-convert-temperature)
(define-key calc-mode-map "uu" 'calc-undefine-unit)
(define-key calc-mode-map "uv" 'calc-enter-units-table)
(define-key calc-mode-map "ux" 'calc-extract-units)
(define-key calc-mode-map "uV" 'calc-view-units-table)
(define-key calc-mode-map "uC" 'calc-vector-covariance)
(define-key calc-mode-map "uG" 'calc-vector-geometric-mean)
(define-key calc-mode-map "uM" 'calc-vector-mean)
(define-key calc-mode-map "uN" 'calc-vector-min)
(define-key calc-mode-map "uR" 'calc-vector-rms)
(define-key calc-mode-map "uS" 'calc-vector-sdev)
(define-key calc-mode-map "uU" 'calc-undo)
(define-key calc-mode-map "uX" 'calc-vector-max)
(define-key calc-mode-map "u#" 'calc-vector-count)
(define-key calc-mode-map "u+" 'calc-vector-sum)
(define-key calc-mode-map "u*" 'calc-vector-product)
(define-key calc-mode-map "v" 'nil)
(define-key calc-mode-map "v?" 'calc-v-prefix-help)
(define-key calc-mode-map "va" 'calc-arrange-vector)
(define-key calc-mode-map "vb" 'calc-build-vector)
(define-key calc-mode-map "vc" 'calc-mcol)
(define-key calc-mode-map "vd" 'calc-diag)
(define-key calc-mode-map "ve" 'calc-expand-vector)
(define-key calc-mode-map "vf" 'calc-vector-find)
(define-key calc-mode-map "vh" 'calc-head)
(define-key calc-mode-map "vi" 'calc-ident)
(define-key calc-mode-map "vk" 'calc-cons)
(define-key calc-mode-map "vl" 'calc-vlength)
(define-key calc-mode-map "vm" 'calc-mask-vector)
(define-key calc-mode-map "vn" 'calc-rnorm)
(define-key calc-mode-map "vp" 'calc-pack)
(define-key calc-mode-map "vr" 'calc-mrow)
(define-key calc-mode-map "vs" 'calc-subvector)
(define-key calc-mode-map "vt" 'calc-transpose)
(define-key calc-mode-map "vu" 'calc-unpack)
(define-key calc-mode-map "vv" 'calc-reverse-vector)
(define-key calc-mode-map "vx" 'calc-index)
(define-key calc-mode-map "vA" 'calc-apply)
(define-key calc-mode-map "vC" 'calc-cross)
(define-key calc-mode-map "vK" 'calc-kron)
(define-key calc-mode-map "vD" 'calc-mdet)
(define-key calc-mode-map "vE" 'calc-set-enumerate)
(define-key calc-mode-map "vF" 'calc-set-floor)
(define-key calc-mode-map "vG" 'calc-grade)
(define-key calc-mode-map "vH" 'calc-histogram)
(define-key calc-mode-map "vI" 'calc-inner-product)
(define-key calc-mode-map "vJ" 'calc-conj-transpose)
(define-key calc-mode-map "vL" 'calc-mlud)
(define-key calc-mode-map "vM" 'calc-map)
(define-key calc-mode-map "vN" 'calc-cnorm)
(define-key calc-mode-map "vO" 'calc-outer-product)
(define-key calc-mode-map "vR" 'calc-reduce)
(define-key calc-mode-map "vS" 'calc-sort)
(define-key calc-mode-map "vT" 'calc-mtrace)
(define-key calc-mode-map "vU" 'calc-accumulate)
(define-key calc-mode-map "vV" 'calc-set-union)
(define-key calc-mode-map "vX" 'calc-set-xor)
(define-key calc-mode-map "v^" 'calc-set-intersect)
(define-key calc-mode-map "v-" 'calc-set-difference)
(define-key calc-mode-map "v~" 'calc-set-complement)
(define-key calc-mode-map "v:" 'calc-set-span)
(define-key calc-mode-map "v#" 'calc-set-cardinality)
(define-key calc-mode-map "v+" 'calc-remove-duplicates)
(define-key calc-mode-map "v&" 'calc-inv)
(define-key calc-mode-map "v<" 'calc-matrix-left-justify)
(define-key calc-mode-map "v=" 'calc-matrix-center-justify)
(define-key calc-mode-map "v>" 'calc-matrix-right-justify)
(define-key calc-mode-map "v." 'calc-full-vectors)
(define-key calc-mode-map "v/" 'calc-break-vectors)
(define-key calc-mode-map "v," 'calc-vector-commas)
(define-key calc-mode-map "v[" 'calc-vector-brackets)
(define-key calc-mode-map "v]" 'calc-matrix-brackets)
(define-key calc-mode-map "v{" 'calc-vector-braces)
(define-key calc-mode-map "v}" 'calc-matrix-brackets)
(define-key calc-mode-map "v(" 'calc-vector-parens)
(define-key calc-mode-map "v)" 'calc-matrix-brackets)
;; We can't rely on the automatic upper->lower conversion because
;; in the global map V is explicitly bound, so we need to bind it
;; explicitly as well :-( --stef
(define-key calc-mode-map "V" (lookup-key calc-mode-map "v"))
(define-key calc-mode-map "z" 'nil)
(define-key calc-mode-map "z?" 'calc-z-prefix-help)
(define-key calc-mode-map "Z" 'nil)
(define-key calc-mode-map "Z?" 'calc-shift-Z-prefix-help)
(define-key calc-mode-map "ZC" 'calc-user-define-composition)
(define-key calc-mode-map "ZD" 'calc-user-define)
(define-key calc-mode-map "ZE" 'calc-user-define-edit)
(define-key calc-mode-map "ZF" 'calc-user-define-formula)
(define-key calc-mode-map "ZG" 'calc-get-user-defn)
(define-key calc-mode-map "ZI" 'calc-user-define-invocation)
(define-key calc-mode-map "ZK" 'calc-user-define-kbd-macro)
(define-key calc-mode-map "ZP" 'calc-user-define-permanent)
(define-key calc-mode-map "ZS" 'calc-edit-user-syntax)
(define-key calc-mode-map "ZT" 'calc-timing)
(define-key calc-mode-map "ZU" 'calc-user-undefine)
(define-key calc-mode-map "Z[" 'calc-kbd-if)
(define-key calc-mode-map "Z:" 'calc-kbd-else)
(define-key calc-mode-map "Z|" 'calc-kbd-else-if)
(define-key calc-mode-map "Z]" 'calc-kbd-end-if)
(define-key calc-mode-map "Z<" 'calc-kbd-repeat)
(define-key calc-mode-map "Z>" 'calc-kbd-end-repeat)
(define-key calc-mode-map "Z(" 'calc-kbd-for)
(define-key calc-mode-map "Z)" 'calc-kbd-end-for)
(define-key calc-mode-map "Z{" 'calc-kbd-loop)
(define-key calc-mode-map "Z}" 'calc-kbd-end-loop)
(define-key calc-mode-map "Z/" 'calc-kbd-break)
(define-key calc-mode-map "Z`" 'calc-kbd-push)
(define-key calc-mode-map "Z'" 'calc-kbd-pop)
(define-key calc-mode-map "Z=" 'calc-kbd-report)
(define-key calc-mode-map "Z#" 'calc-kbd-query)
(calc-init-prefixes)
(mapc (function
(lambda (x)
(define-key calc-mode-map (format "c%c" x) 'calc-clean-num)
(define-key calc-mode-map (format "j%c" x) 'calc-select-part)
(define-key calc-mode-map (format "r%c" x) 'calc-recall-quick)
(define-key calc-mode-map (format "s%c" x) 'calc-store-quick)
(define-key calc-mode-map (format "t%c" x) 'calc-store-into-quick)
(define-key calc-mode-map (format "u%c" x) 'calc-quick-units)))
"0123456789")
(let ((i ?A))
(while (<= i ?z)
(if (eq (car-safe (aref (nth 1 calc-mode-map) i)) 'keymap)
(aset (nth 1 calc-mode-map) i
(cons 'keymap (cons (cons ?\e (aref (nth 1 calc-mode-map) i))
(cdr (aref (nth 1 calc-mode-map) i))))))
(setq i (1+ i))))
(setq calc-alg-map (copy-keymap calc-mode-map)
calc-alg-esc-map (copy-keymap esc-map))
(let ((i 32))
(while (< i 127)
(or (memq i '(?' ?` ?= ??))
(aset (nth 1 calc-alg-map) i 'calc-auto-algebraic-entry))
(or (memq i '(?# ?x ?0 ?1 ?2 ?3 ?4 ?5 ?6 ?7 ?8 ?9))
(aset (nth 1 calc-alg-esc-map) i (aref (nth 1 calc-mode-map) i)))
(setq i (1+ i))))
(define-key calc-alg-map "\e" calc-alg-esc-map)
(define-key calc-alg-map "\e\t" 'calc-roll-up)
(define-key calc-alg-map "\e\C-m" 'calc-last-args-stub)
(define-key calc-alg-map "\e\177" 'calc-pop-above)
;;;; (Autoloads here)
(mapc (function (lambda (x)
(mapcar (function (lambda (func) (autoload func (car x))))
(cdr x))))
'(
("calc-alg" calc-has-rules math-defsimplify
calc-modify-simplify-mode calcFunc-collect calcFunc-esimplify
calcFunc-islin calcFunc-islinnt calcFunc-lin calcFunc-linnt
calcFunc-simplify calcFunc-subst calcFunc-powerexpand math-beforep
math-build-polynomial-expr math-expand-formula math-expr-contains
math-expr-contains-count math-expr-depends math-expr-height
math-expr-subst math-expr-weight math-integer-plus math-is-linear
math-is-multiple math-is-polynomial math-linear-in math-multiple-of
math-poly-depends math-poly-mix math-poly-mul
math-poly-simplify math-poly-zerop math-polynomial-base
math-polynomial-p math-recompile-eval-rules math-simplify
math-simplify-exp math-simplify-extended math-simplify-sqrt
math-to-simple-fraction)
("calcalg2" calcFunc-asum calcFunc-deriv
calcFunc-ffinv calcFunc-finv calcFunc-fsolve calcFunc-gpoly
calcFunc-integ calcFunc-poly calcFunc-prod calcFunc-roots
calcFunc-solve calcFunc-sum calcFunc-table calcFunc-taylor
calcFunc-tderiv math-expr-calls math-integral-q02 math-integral-q12
math-integral-rational-funcs math-lcm-denoms math-looks-evenp
math-poly-all-roots math-prod-rec math-reject-solution math-solve-eqn
math-solve-for math-sum-rec math-try-integral)
("calcalg3" calcFunc-efit calcFunc-fit
calcFunc-fitdummy calcFunc-fitparam calcFunc-fitvar
calcFunc-hasfitparams calcFunc-hasfitvars calcFunc-maximize
calcFunc-minimize calcFunc-ninteg calcFunc-polint calcFunc-ratint
calcFunc-root calcFunc-wmaximize calcFunc-wminimize calcFunc-wroot
calcFunc-xfit math-find-minimum math-find-root math-ninteg-evaluate
math-ninteg-midpoint math-ninteg-romberg math-poly-interp)
("calc-arith" calcFunc-abs calcFunc-abssqr
calcFunc-add calcFunc-ceil calcFunc-decr calcFunc-deven calcFunc-dimag
calcFunc-dint calcFunc-div calcFunc-dnatnum calcFunc-dneg
calcFunc-dnonneg calcFunc-dnonzero calcFunc-dnumint calcFunc-dodd
calcFunc-dpos calcFunc-drange calcFunc-drat calcFunc-dreal
calcFunc-dscalar calcFunc-fceil calcFunc-ffloor calcFunc-float
calcFunc-fround calcFunc-frounde calcFunc-froundu calcFunc-ftrunc
calcFunc-idiv calcFunc-incr calcFunc-ldiv calcFunc-mant calcFunc-max calcFunc-min
calcFunc-mod calcFunc-mul calcFunc-neg calcFunc-percent calcFunc-pow
calcFunc-relch calcFunc-round calcFunc-rounde calcFunc-roundu
calcFunc-scf calcFunc-sub calcFunc-xpon math-abs math-abs-approx
math-add-objects-fancy math-add-or-sub math-add-symb-fancy
math-ceiling math-combine-prod math-combine-sum math-div-by-zero
math-div-objects-fancy math-div-symb-fancy math-div-zero
math-float-fancy math-floor-fancy math-floor-special math-guess-if-neg
math-intv-constp math-known-evenp math-known-imagp math-known-integerp
math-known-matrixp math-known-negp math-known-nonnegp
math-known-nonposp math-known-nonzerop math-known-num-integerp
math-known-oddp math-known-posp math-known-realp math-known-scalarp
math-max math-min math-mod-fancy math-mul-float math-mul-objects-fancy
math-mul-or-div math-mul-symb-fancy math-mul-zero math-neg-fancy
math-neg-float math-okay-neg math-possible-signs math-possible-types
math-pow-fancy math-pow-mod math-pow-of-zero math-pow-zero
math-quarter-integer math-round math-setup-declarations math-sqr
math-sqr-float math-trunc-fancy math-trunc-special)
("calc-bin" calcFunc-and calcFunc-ash
calcFunc-clip calcFunc-diff calcFunc-lsh calcFunc-not calcFunc-or
calcFunc-rash calcFunc-rot calcFunc-rsh calcFunc-xor math-clip
math-compute-max-digits math-convert-radix-digits math-float-parts
math-format-binary
math-format-radix math-format-radix-float math-integer-log2
math-power-of-2 math-radix-float-power)
("calc-comb" calc-report-prime-test
calcFunc-choose calcFunc-dfact calcFunc-egcd calcFunc-fact
calcFunc-gcd calcFunc-lcm calcFunc-moebius calcFunc-nextprime
calcFunc-perm calcFunc-prevprime calcFunc-prfac calcFunc-prime
calcFunc-random calcFunc-shuffle calcFunc-stir1 calcFunc-stir2
calcFunc-totient math-init-random-base math-member math-prime-test
math-random-base)
("calccomp" calcFunc-cascent calcFunc-cdescent
calcFunc-cheight calcFunc-cwidth math-comp-ascent math-comp-descent
math-comp-height math-comp-width math-compose-expr
math-composition-to-string math-stack-value-offset-fancy
math-vector-is-string math-vector-to-string)
("calc-cplx" calcFunc-arg calcFunc-conj
calcFunc-im calcFunc-polar calcFunc-re calcFunc-rect math-complex
math-fix-circular math-imaginary math-imaginary-i math-normalize-polar
math-polar math-want-polar)
("calc-embed" calc-do-embedded
calc-do-embedded-activate calc-embedded-evaluate-expr
calc-embedded-modes-change calc-embedded-var-change
calc-embedded-preserve-modes)
("calc-fin" calc-to-percentage calcFunc-ddb
calcFunc-fv calcFunc-fvb calcFunc-fvl calcFunc-irr calcFunc-irrb
calcFunc-nper calcFunc-nperb calcFunc-nperl calcFunc-npv calcFunc-npvb
calcFunc-pmt calcFunc-pmtb calcFunc-pv calcFunc-pvb calcFunc-pvl
calcFunc-rate calcFunc-rateb calcFunc-ratel calcFunc-sln calcFunc-syd)
("calc-forms" calcFunc-badd calcFunc-bsub
calcFunc-date calcFunc-day calcFunc-dsadj calcFunc-hms
calcFunc-holiday calcFunc-hour calcFunc-incmonth calcFunc-incyear
calcFunc-intv calcFunc-julian calcFunc-makemod calcFunc-minute
calcFunc-month calcFunc-newmonth calcFunc-newweek calcFunc-newyear
calcFunc-now calcFunc-pwday calcFunc-sdev calcFunc-second
calcFunc-time calcFunc-tzconv calcFunc-tzone calcFunc-unixtime
calcFunc-weekday calcFunc-year calcFunc-yearday math-combine-intervals
math-date-parts math-date-to-dt math-div-mod math-dt-to-date
math-format-date math-from-business-day math-from-hms math-make-intv
math-make-mod math-make-sdev math-mod-intv math-normalize-hms
math-normalize-mod math-parse-date math-read-angle-brackets
math-setup-add-holidays math-setup-holidays math-setup-year-holidays
math-sort-intv math-to-business-day math-to-hms)
("calc-frac" calc-add-fractions
calc-div-fractions calc-mul-fractions calcFunc-fdiv calcFunc-frac
math-make-frac)
("calc-funcs" calc-prob-dist calcFunc-bern
calcFunc-besJ calcFunc-besY calcFunc-beta calcFunc-betaB
calcFunc-betaI calcFunc-erf calcFunc-erfc calcFunc-euler
calcFunc-gamma calcFunc-gammaG calcFunc-gammaP calcFunc-gammaQ
calcFunc-gammag calcFunc-ltpb calcFunc-ltpc calcFunc-ltpf
calcFunc-ltpn calcFunc-ltpp calcFunc-ltpt calcFunc-utpb calcFunc-utpc
calcFunc-utpf calcFunc-utpn calcFunc-utpp calcFunc-utpt
math-bernoulli-number math-gammap1-raw)
("calc-graph" calc-graph-show-tty)
("calc-incom" calc-digit-dots)
("calc-keypd" calc-do-keypad
calc-keypad-x-left-click calc-keypad-x-middle-click
calc-keypad-x-right-click)
("calc-lang" calc-set-language
math-read-big-balance math-read-big-rec)
("calc-map" calc-get-operator calcFunc-accum
calcFunc-afixp calcFunc-anest calcFunc-apply calcFunc-call
calcFunc-fixp calcFunc-inner calcFunc-map calcFunc-mapa calcFunc-mapc
calcFunc-mapd calcFunc-mapeq calcFunc-mapeqp calcFunc-mapeqr
calcFunc-mapr calcFunc-nest calcFunc-outer calcFunc-raccum
calcFunc-reduce calcFunc-reducea calcFunc-reducec calcFunc-reduced
calcFunc-reducer calcFunc-rreduce calcFunc-rreducea calcFunc-rreducec
calcFunc-rreduced calcFunc-rreducer math-build-call
math-calcFunc-to-var math-multi-subst math-multi-subst-rec
math-var-to-calcFunc)
("calc-mtx" calcFunc-det calcFunc-lud calcFunc-tr
math-col-matrix math-lud-solve math-matrix-inv-raw math-matrix-lud
math-mul-mat-vec math-mul-mats math-row-matrix)
("calc-math" calcFunc-alog calcFunc-arccos
calcFunc-arccosh calcFunc-arcsin calcFunc-arcsincos calcFunc-arcsinh
calcFunc-arctan calcFunc-arctan2 calcFunc-arctanh calcFunc-csc
calcFunc-csch calcFunc-cos calcFunc-cosh calcFunc-cot calcFunc-coth
calcFunc-deg calcFunc-exp calcFunc-exp10 calcFunc-expm1
calcFunc-hypot calcFunc-ilog calcFunc-isqrt calcFunc-ln calcFunc-lnp1
calcFunc-log calcFunc-log10 calcFunc-nroot calcFunc-rad calcFunc-sec
calcFunc-sech calcFunc-sin
calcFunc-sincos calcFunc-sinh calcFunc-sqr calcFunc-sqrt calcFunc-tan
calcFunc-tanh math-arccos-raw math-arcsin-raw math-arctan-raw
math-arctan2-raw math-cos-raw math-cot-raw math-csc-raw
math-exp-minus-1-raw math-exp-raw
math-from-radians math-from-radians-2 math-hypot math-infinite-dir
math-ln-raw math-nearly-equal math-nearly-equal-float
math-nearly-zerop math-nearly-zerop-float math-nth-root
math-sin-cos-raw math-sin-raw math-sqrt math-sqrt-float math-sqrt-raw
math-tan-raw math-to-radians math-to-radians-2)
("calc-mode" math-get-modes-vec)
("calc-poly" calcFunc-apart calcFunc-expand
calcFunc-expandpow calcFunc-factor calcFunc-factors calcFunc-nrat
calcFunc-pcont calcFunc-pdeg calcFunc-pdiv calcFunc-pdivide
calcFunc-pdivrem calcFunc-pgcd calcFunc-plead calcFunc-pprim
calcFunc-prem math-accum-factors math-atomic-factorp
math-div-poly-const math-div-thru math-expand-power math-expand-term
math-factor-contains math-factor-expr
math-factor-finish
math-factor-protect math-mul-thru math-padded-polynomial
math-partial-fractions math-poly-degree math-poly-deriv-coefs
math-poly-gcd-frac-list math-poly-modulus-rec math-ratpoly-p
math-to-ratpoly math-to-ratpoly-rec)
("calc-prog" calc-default-formula-arglist
calc-execute-kbd-macro calc-finish-user-syntax-edit
calc-fix-token-name calc-fix-user-formula calc-read-parse-table
calc-read-parse-table-part calc-subsetp calc-write-parse-table
calc-write-parse-table-part calcFunc-constant calcFunc-eq calcFunc-geq
calcFunc-gt calcFunc-if calcFunc-in calcFunc-integer calcFunc-istrue
calcFunc-land calcFunc-leq calcFunc-lnot calcFunc-lor calcFunc-lt
calcFunc-negative calcFunc-neq calcFunc-nonvar calcFunc-real
calcFunc-refers calcFunc-rmeq calcFunc-typeof calcFunc-variable
math-body-refers-to math-break math-composite-inequalities
math-do-defmath math-handle-for math-handle-foreach
math-normalize-logical-op math-return)
("calc-rewr" calcFunc-match calcFunc-matches
calcFunc-matchnot calcFunc-rewrite calcFunc-vmatches
math-apply-rewrites math-compile-patterns math-compile-rewrites
math-flatten-lands math-match-patterns math-rewrite
math-rewrite-heads)
("calc-rules" calc-CommuteRules calc-DistribRules calc-FactorRules
calc-FitRules calc-IntegAfterRules calc-InvertRules calc-JumpRules
calc-MergeRules calc-NegateRules
calc-compile-rule-set)
("calc-sel" calc-auto-selection
calc-delete-selection calc-encase-atoms calc-find-assoc-parent-formula
calc-find-parent-formula calc-find-sub-formula calc-prepare-selection
calc-preserve-point calc-replace-selections calc-replace-sub-formula
calc-roll-down-with-selections calc-roll-up-with-selections
calc-sel-error)
("calc-stat" calc-vector-op calcFunc-agmean calcFunc-rms
calcFunc-vcorr calcFunc-vcount calcFunc-vcov calcFunc-vflat
calcFunc-vgmean calcFunc-vhmean calcFunc-vmax calcFunc-vmean
calcFunc-vmeane calcFunc-vmedian calcFunc-vmin calcFunc-vpcov
calcFunc-vprod calcFunc-vpsdev calcFunc-vpvar calcFunc-vsdev
calcFunc-vsum calcFunc-vvar math-flatten-many-vecs)
("calc-store" calc-read-var-name
calc-store-value calc-var-name)
("calc-stuff" calc-explain-why calcFunc-clean
calcFunc-pclean calcFunc-pfloat calcFunc-pfrac)
("calc-units" calcFunc-usimplify calcFunc-lufadd calcFunc-lupadd
calcFunc-lufsub calcFunc-lupsub calcFunc-lufmul calcFunc-lupmul
calcFunc-lufdiv calcFunc-lupdiv calcFunc-lufquant calcFunc-lupquant
calcFunc-dbfield calcFunc-dbpower calcFunc-npfield
calcFunc-nppower calcFunc-spn calcFunc-midi calcFunc-freq
math-build-units-table math-build-units-table-buffer
math-check-unit-name math-convert-temperature math-convert-units
math-extract-units math-remove-units math-simplify-units
math-single-units-in-expr-p math-to-standard-units
math-units-in-expr-p)
("calc-vec" calcFunc-append calcFunc-appendrev
calcFunc-arrange calcFunc-cnorm calcFunc-cons calcFunc-cross
calcFunc-kron calcFunc-ctrn calcFunc-cvec calcFunc-diag calcFunc-find
calcFunc-getdiag calcFunc-grade calcFunc-head calcFunc-histogram
calcFunc-idn calcFunc-index calcFunc-mcol calcFunc-mdims
calcFunc-mrcol calcFunc-mrow calcFunc-mrrow calcFunc-pack
calcFunc-rcons calcFunc-rdup calcFunc-rev calcFunc-rgrade
calcFunc-rhead calcFunc-rnorm calcFunc-rsort calcFunc-rsubvec
calcFunc-rtail calcFunc-sort calcFunc-subscr calcFunc-subvec
calcFunc-tail calcFunc-trn calcFunc-unpack calcFunc-unpackt
calcFunc-vcard calcFunc-vcompl calcFunc-vconcat calcFunc-vconcatrev
calcFunc-vdiff calcFunc-vec calcFunc-venum calcFunc-vexp
calcFunc-vfloor calcFunc-vint calcFunc-vlen calcFunc-vmask
calcFunc-vpack calcFunc-vspan calcFunc-vunion calcFunc-vunpack
calcFunc-vxor math-check-for-commas math-clean-set math-copy-matrix
math-dimension-error math-dot-product math-flatten-vector math-map-vec
math-map-vec-2 math-mat-col math-mimic-ident math-prepare-set
math-read-brackets math-reduce-cols math-reduce-vec math-transpose)
("calc-yank" calc-alg-edit calc-clean-newlines
calc-do-grab-rectangle calc-do-grab-region calc-finish-stack-edit
calc-copy-to-register calc-insert-register
calc-append-to-register calc-prepend-to-register
calc-force-refresh calc-locate-cursor-element calc-show-edit-buffer)
))
(mapcar (function (lambda (x)
(mapcar (function (lambda (cmd) (autoload cmd (car x) nil t)))
(cdr x))))
'(
("calc-alg" calc-alg-evaluate calc-apart calc-collect calc-expand
calc-expand-formula calc-factor calc-normalize-rat calc-poly-div
calc-poly-div-rem calc-poly-gcd calc-poly-rem calc-simplify
calc-simplify-extended calc-substitute calc-powerexpand)
("calcalg2" calc-alt-summation calc-derivative
calc-dump-integral-cache calc-integral calc-num-integral
calc-poly-roots calc-product calc-solve-for calc-summation
calc-tabulate calc-taylor)
("calcalg3" calc-curve-fit calc-find-maximum calc-find-minimum
calc-find-root calc-poly-interp)