calc-ext.el 129 KB

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