1 ;;; calcalg3.el --- more algebraic functions for Calc
3 ;; Copyright (C) 1990, 1991, 1992, 1993, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006 Free Software Foundation, Inc.
6 ;; Author: David Gillespie <daveg@synaptics.com>
7 ;; Maintainer: Jay Belanger <belanger@truman.edu>
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is distributed in the hope that it will be useful,
12 ;; but WITHOUT ANY WARRANTY. No author or distributor
13 ;; accepts responsibility to anyone for the consequences of using it
14 ;; or for whether it serves any particular purpose or works at all,
15 ;; unless he says so in writing. Refer to the GNU Emacs General Public
16 ;; License for full details.
18 ;; Everyone is granted permission to copy, modify and redistribute
19 ;; GNU Emacs, but only under the conditions described in the
20 ;; GNU Emacs General Public License. A copy of this license is
21 ;; supposed to have been given to you along with GNU Emacs so you
22 ;; can know your rights and responsibilities. It should be in a
23 ;; file named COPYING. Among other things, the copyright notice
24 ;; and this notice must be preserved on all copies.
30 ;; This file is autoloaded from calc-ext.el.
35 (defun calc-find-root (var)
36 (interactive "sVariable(s) to solve for: ")
38 (let ((func (if (calc-is-hyperbolic) 'calcFunc-wroot
'calcFunc-root
)))
39 (if (or (equal var
"") (equal var
"$"))
40 (calc-enter-result 2 "root" (list func
44 (let ((var (if (and (string-match ",\\|[^ ] +[^ ]" var
)
45 (not (string-match "\\[" var
)))
46 (math-read-expr (concat "[" var
"]"))
47 (math-read-expr var
))))
48 (if (eq (car-safe var
) 'error
)
49 (error "Bad format in expression: %s" (nth 1 var
)))
50 (calc-enter-result 1 "root" (list func
55 (defun calc-find-minimum (var)
56 (interactive "sVariable(s) to minimize over: ")
58 (let ((func (if (calc-is-inverse)
59 (if (calc-is-hyperbolic)
60 'calcFunc-wmaximize
'calcFunc-maximize
)
61 (if (calc-is-hyperbolic)
62 'calcFunc-wminimize
'calcFunc-minimize
)))
63 (tag (if (calc-is-inverse) "max" "min")))
64 (if (or (equal var
"") (equal var
"$"))
65 (calc-enter-result 2 tag
(list func
69 (let ((var (if (and (string-match ",\\|[^ ] +[^ ]" var
)
70 (not (string-match "\\[" var
)))
71 (math-read-expr (concat "[" var
"]"))
72 (math-read-expr var
))))
73 (if (eq (car-safe var
) 'error
)
74 (error "Bad format in expression: %s" (nth 1 var
)))
75 (calc-enter-result 1 tag
(list func
80 (defun calc-find-maximum (var)
81 (interactive "sVariable to maximize over: ")
83 (calc-find-minimum var
))
86 (defun calc-poly-interp (arg)
89 (let ((data (calc-top 2)))
90 (if (or (consp arg
) (eq arg
0) (eq arg
2))
91 (setq data
(cons 'vec
(calc-top-list 2 2)))
93 (error "Bad prefix argument")))
94 (if (calc-is-hyperbolic)
95 (calc-enter-result 1 "rati" (list 'calcFunc-ratint data
(calc-top 1)))
96 (calc-enter-result 1 "poli" (list 'calcFunc-polint data
99 ;; The variables calc-curve-nvars, calc-curve-varnames, calc-curve-model and calc-curve-coefnames are local to calc-curve-fit, but are
100 ;; used by calc-get-fit-variables which is called by calc-curve-fit.
101 (defvar calc-curve-nvars
)
102 (defvar calc-curve-varnames
)
103 (defvar calc-curve-model
)
104 (defvar calc-curve-coefnames
)
106 (defvar calc-curve-fit-history nil
107 "History for calc-curve-fit.")
109 (defun calc-curve-fit (arg &optional calc-curve-model
110 calc-curve-coefnames calc-curve-varnames
)
113 (setq calc-aborted-prefix nil
)
114 (let ((func (if (calc-is-inverse) 'calcFunc-xfit
115 (if (calc-is-hyperbolic) 'calcFunc-efit
118 n calc-curve-nvars temp data
120 (msgs '( "(Press ? for help)"
121 "1 = linear or multilinear"
122 "2-9 = polynomial fits; i = interpolating polynomial"
123 "p = a x^b, ^ = a b^x"
124 "e = a exp(b x), x = exp(a + b x), l = a + b ln(x)"
125 "E = a 10^(b x), X = 10^(a + b x), L = a + b log10(x)"
127 "g = (a/b sqrt(2 pi)) exp(-0.5*((x-c)/b)^2)"
128 "h prefix = homogeneous model (no constant term)"
129 "' = alg entry, $ = stack, u = Model1, U = Model2")))
130 (while (not calc-curve-model
)
131 (message "Fit to model: %s:%s"
134 (setq key
(read-char))
138 (setq which
(%
(1+ which
) (length msgs
))))
140 (setq homog
(not homog
)))
148 ((or (consp arg
) (eq arg
0))
151 data
(if (math-matrixp data
)
152 (append data
(list (calc-top (1- n
))))
153 (list 'vec data
(calc-top (1- n
))))))
154 ((> (setq arg
(prefix-numeric-value arg
)) 0)
155 (setq data
(cons 'vec
(calc-top-list arg
(1+ n
)))
157 (t (error "Bad prefix argument")))
158 (or (math-matrixp data
) (not (cdr (cdr data
)))
159 (error "Data matrix is not a matrix!"))
160 (setq calc-curve-nvars
(- (length data
) 2)
161 calc-curve-coefnames nil
162 calc-curve-varnames nil
)
164 ((= key ?
1) ; linear or multilinear
165 (calc-get-fit-variables calc-curve-nvars
166 (1+ calc-curve-nvars
) (and homog
0))
167 (setq calc-curve-model
(math-mul calc-curve-coefnames
168 (cons 'vec
(cons 1 (cdr calc-curve-varnames
))))))
169 ((and (>= key ?
2) (<= key ?
9)) ; polynomial
170 (calc-get-fit-variables 1 (- key ?
0 -
1) (and homog
0))
171 (setq calc-curve-model
172 (math-build-polynomial-expr (cdr calc-curve-coefnames
)
173 (nth 1 calc-curve-varnames
))))
174 ((= key ?i
) ; exact polynomial
175 (calc-get-fit-variables 1 (1- (length (nth 1 data
)))
177 (setq calc-curve-model
178 (math-build-polynomial-expr (cdr calc-curve-coefnames
)
179 (nth 1 calc-curve-varnames
))))
180 ((= key ?p
) ; power law
181 (calc-get-fit-variables calc-curve-nvars
182 (1+ calc-curve-nvars
) (and homog
1))
183 (setq calc-curve-model
(math-mul (nth 1 calc-curve-coefnames
)
189 (cons 'vec
(cdr (cdr calc-curve-coefnames
))))))))
190 ((= key ?^
) ; exponential law
191 (calc-get-fit-variables calc-curve-nvars
192 (1+ calc-curve-nvars
) (and homog
1))
193 (setq calc-curve-model
(math-mul (nth 1 calc-curve-coefnames
)
198 (cons 'vec
(cdr (cdr calc-curve-coefnames
)))
199 calc-curve-varnames
)))))
201 (calc-get-fit-variables calc-curve-nvars
202 (1+ calc-curve-nvars
) (and homog
1))
203 (setq calc-curve-model
(math-mul (nth 1 calc-curve-coefnames
)
211 (^
10 (var a var-a
))))
214 (cons 'vec
(cdr (cdr calc-curve-coefnames
)))
215 calc-curve-varnames
))))))
217 (calc-get-fit-variables calc-curve-nvars
218 (1+ calc-curve-nvars
) (and homog
0))
219 (setq calc-curve-model
(math-mul calc-curve-coefnames
220 (cons 'vec
(cons 1 (cdr calc-curve-varnames
)))))
221 (setq calc-curve-model
(if (eq key ?x
)
222 (list 'calcFunc-exp calc-curve-model
)
223 (list '^
10 calc-curve-model
))))
225 (calc-get-fit-variables calc-curve-nvars
226 (1+ calc-curve-nvars
) (and homog
0))
227 (setq calc-curve-model
(math-mul calc-curve-coefnames
229 (cons 1 (cdr (calcFunc-map
234 calc-curve-varnames
)))))))
236 (calc-get-fit-variables calc-curve-nvars
237 (1+ (* 2 calc-curve-nvars
)) (and homog
0))
238 (let ((c calc-curve-coefnames
)
239 (v calc-curve-varnames
))
240 (setq calc-curve-model
(nth 1 c
))
241 (while (setq v
(cdr v
) c
(cdr (cdr c
)))
242 (setq calc-curve-model
(math-add
247 (list '-
(car v
) (nth 1 c
))
250 (setq calc-curve-model
251 (math-read-expr "(AFit / BFit sqrt(2 pi)) exp(-0.5 * ((XFit - CFit) / BFit)^2)")
252 calc-curve-varnames
'(vec (var XFit var-XFit
))
253 calc-curve-coefnames
'(vec (var AFit var-AFit
)
255 (var CFit var-CFit
)))
256 (calc-get-fit-variables 1 (1- (length calc-curve-coefnames
))
258 ((memq key
'(?\$ ?
\' ?u ?U
))
262 (let* ((calc-dollar-values calc-arg-values
)
264 (calc-hashes-used 0))
265 (setq calc-curve-model
(calc-do-alg-entry "" "Model formula: "
266 nil
'calc-curve-fit-history
))
267 (if (/= (length calc-curve-model
) 1)
268 (error "Bad format"))
269 (setq calc-curve-model
(car calc-curve-model
)
271 (if (> calc-dollar-used
0)
272 (setq calc-curve-coefnames
274 (nthcdr (- (length calc-arg-values
)
276 (reverse calc-arg-values
))))
277 (if (> calc-hashes-used
0)
278 (setq calc-curve-coefnames
279 (cons 'vec
(calc-invent-args
280 calc-hashes-used
))))))
282 (setq calc-curve-model
(cond ((eq key ?u
)
283 (calc-var-value 'var-Model1
))
285 (calc-var-value 'var-Model2
))
287 (or calc-curve-model
(error "User model not yet defined"))
288 (if (math-vectorp calc-curve-model
)
289 (if (and (memq (length calc-curve-model
) '(3 4))
290 (not (math-objvecp (nth 1 calc-curve-model
)))
291 (math-vectorp (nth 2 calc-curve-model
))
292 (or (null (nth 3 calc-curve-model
))
293 (math-vectorp (nth 3 calc-curve-model
))))
294 (setq calc-curve-varnames
(nth 2 calc-curve-model
)
296 (or (nth 3 calc-curve-model
)
299 calc-curve-model calc-curve-varnames
)))
300 calc-curve-model
(nth 1 calc-curve-model
))
301 (error "Incorrect model specifier")))))
302 (or calc-curve-varnames
303 (let ((with-y (eq (car-safe calc-curve-model
) 'calcFunc-eq
)))
304 (if calc-curve-coefnames
305 (calc-get-fit-variables
306 (if with-y
(1+ calc-curve-nvars
) calc-curve-nvars
)
307 (1- (length calc-curve-coefnames
))
309 calc-curve-model calc-curve-coefnames
)
311 (let* ((coefs (math-all-vars-but calc-curve-model nil
))
313 (n (- (length coefs
) calc-curve-nvars
(if with-y
2 1)))
316 (error "Not enough variables in model"))
317 (setq p
(nthcdr n coefs
))
320 (calc-get-fit-variables
321 (if with-y
(1+ calc-curve-nvars
) calc-curve-nvars
)
323 vars coefs with-y
)))))
325 (calc-record (list 'vec calc-curve-model
326 calc-curve-varnames calc-curve-coefnames
)
329 (let ((calc-fit-to-trail t
))
330 (calc-enter-result n
(substring (symbol-name func
) 9)
331 (list func calc-curve-model
332 (if (= (length calc-curve-varnames
) 2)
333 (nth 1 calc-curve-varnames
)
335 (if (= (length calc-curve-coefnames
) 2)
336 (nth 1 calc-curve-coefnames
)
337 calc-curve-coefnames
)
339 (if (consp calc-fit-to-trail
)
340 (calc-record (calc-normalize calc-fit-to-trail
) "parm"))))))
342 (defun calc-invent-independent-variables (n &optional but
)
343 (calc-invent-variables n but
'(x y z t
) "x"))
345 (defun calc-invent-parameter-variables (n &optional but
)
346 (calc-invent-variables n but
'(a b c d
) "a"))
348 (defun calc-invent-variables (num but names base
)
352 (while (and (> n
0) names
)
353 (setq var
(math-build-var-name (if (consp names
)
355 (concat base
(int-to-string
356 (setq nn
(1+ nn
)))))))
357 (or (math-expr-contains (cons 'vec but
) var
)
358 (setq vars
(cons var vars
)
360 (or (symbolp names
) (setq names
(cdr names
))))
363 (calc-invent-variables num but t base
))))
365 (defun calc-get-fit-variables (nv nc
&optional defv defc with-y homog
)
366 (or (= nv
(if with-y
(1+ calc-curve-nvars
) calc-curve-nvars
))
367 (error "Wrong number of data vectors for this type of model"))
374 (setq defv
(calc-invent-independent-variables nv
)))
376 (setq defc
(calc-invent-parameter-variables nc defv
)))
377 (let ((vars (read-string (format "Fitting variables (default %s; %s): "
378 (mapconcat 'symbol-name
379 (mapcar (function (lambda (v)
383 (mapconcat 'symbol-name
384 (mapcar (function (lambda (v)
389 (setq vars
(if (string-match "\\[" vars
)
390 (math-read-expr vars
)
391 (math-read-expr (concat "[" vars
"]"))))
392 (if (eq (car-safe vars
) 'error
)
393 (error "Bad format in expression: %s" (nth 2 vars
)))
394 (or (math-vectorp vars
)
395 (error "Expected a variable or vector of variables"))
396 (if (equal vars
'(vec))
397 (setq vars
(cons 'vec defv
)
398 coefs
(cons 'vec defc
))
399 (if (math-vectorp (nth 1 vars
))
400 (if (and (= (length vars
) 3)
401 (math-vectorp (nth 2 vars
)))
402 (setq coefs
(nth 2 vars
)
405 "Expected independent variables vector, then parameters vector"))
406 (setq coefs
(cons 'vec defc
))))
407 (or (= nv
(1- (length vars
)))
408 (and (not with-y
) (= (1+ nv
) (1- (length vars
))))
409 (error "Expected %d independent variable%s" nv
(if (= nv
1) "" "s")))
410 (or (= nc
(1- (length coefs
)))
411 (error "Expected %d parameter variable%s" nc
(if (= nc
1) "" "s")))
413 (setq coefs
(cons 'vec
(cons homog
(cdr coefs
)))))
414 (if calc-curve-varnames
415 (setq calc-curve-model
(math-multi-subst calc-curve-model
(cdr calc-curve-varnames
) (cdr vars
))))
416 (if calc-curve-coefnames
417 (setq calc-curve-model
(math-multi-subst calc-curve-model
(cdr calc-curve-coefnames
) (cdr coefs
))))
418 (setq calc-curve-varnames vars
419 calc-curve-coefnames coefs
)))
424 ;;; The following algorithms are from Numerical Recipes chapter 9.
426 ;;; "rtnewt" with safety kludges
430 (defun math-newton-root (expr deriv guess orig-guess limit
)
431 (math-working "newton" guess
)
432 (let* ((var-DUMMY guess
)
434 (setq next
(math-evaluate-expr expr
)
435 dval
(math-evaluate-expr deriv
))
436 (if (and (Math-numberp next
)
438 (not (Math-zerop dval
)))
440 (setq next
(math-sub guess
(math-div next dval
)))
441 (if (math-nearly-equal guess
(setq next
(math-float next
)))
443 (setq var-DUMMY next
)
444 (list 'vec next
(math-evaluate-expr expr
)))
445 (if (Math-lessp (math-abs-approx (math-sub next orig-guess
))
447 (math-newton-root expr deriv next orig-guess limit
)
448 (math-reject-arg next
"*Newton's method failed to converge"))))
449 (math-reject-arg next
"*Newton's method encountered a singularity"))))
451 ;;; Inspired by "rtsafe"
452 (defun math-newton-search-root (expr deriv guess vguess ostep oostep
454 (let ((var-DUMMY guess
)
458 (math-working "newton" (list 'intv
0 low high
))
459 (math-working "bisect" (list 'intv
0 low high
))
460 (setq ostep
(math-mul-float (math-sub-float high low
)
462 guess
(math-add-float low ostep
)
464 vguess
(math-evaluate-expr expr
))
465 (or (Math-realp vguess
)
467 (setq ostep
(math-mul-float ostep
'(float 6 -
1))
468 guess
(math-add-float low ostep
)
470 vguess
(math-evaluate-expr expr
))
471 (or (math-realp vguess
)
473 (setq ostep
(math-mul-float ostep
'(float 123456 -
5))
474 guess
(math-add-float low ostep
)
478 (setq vguess
(math-evaluate-expr expr
)))
479 (or (Math-realp vguess
)
480 (math-reject-arg guess
"*Newton's method encountered a singularity"))
481 (setq vguess
(math-float vguess
))
482 (if (eq (Math-negp vlow
) (setq pos
(Math-posp vguess
)))
485 (if (eq (Math-negp vhigh
) pos
)
489 (if (or (Math-zerop vguess
)
490 (math-nearly-equal low high
))
491 (list 'vec guess vguess
)
492 (setq step
(math-evaluate-expr deriv
))
493 (if (and (Math-realp step
)
494 (not (Math-zerop step
))
495 (setq step
(math-div-float vguess
(math-float step
))
496 next
(math-sub-float guess step
))
497 (not (math-lessp-float high next
))
498 (not (math-lessp-float next low
)))
501 vnext
(math-evaluate-expr expr
))
502 (if (or (Math-zerop vnext
)
503 (math-nearly-equal next guess
))
504 (list 'vec next vnext
)
506 (math-lessp-float (math-abs (or oostep
510 (math-mul-float '(float 2 0)
512 (math-newton-search-root expr deriv nil nil nil ostep
514 (math-newton-search-root expr deriv next vnext step ostep
515 low vlow high vhigh
))))
516 (if (or (and (Math-posp vlow
) (Math-posp vhigh
))
517 (and (Math-negp vlow
) (Math-negp vhigh
)))
518 (math-search-root expr deriv low vlow high vhigh
)
519 (math-newton-search-root expr deriv nil nil nil ostep
520 low vlow high vhigh
))))))
522 ;;; Search for a root in an interval with no overt zero crossing.
524 ;; The variable math-root-widen is local to math-find-root, but
525 ;; is used by math-search-root, which is called (directly and
526 ;; indirectly) by math-find-root.
527 (defvar math-root-widen
)
529 (defun math-search-root (expr deriv low vlow high vhigh
)
533 (iterlim (if (eq math-root-widen
'point
)
534 (+ calc-internal-prec
10)
536 (factor (if (eq math-root-widen
'point
)
539 (prev nil
) vprev waslow
541 (while (or (and (math-posp vlow
) (math-posp vhigh
))
542 (and (math-negp vlow
) (math-negp vhigh
)))
543 (math-working "widen" (list 'intv
0 low high
))
544 (if (> (setq iters
(1+ iters
)) iterlim
)
545 (math-reject-arg (list 'intv
0 low high
)
546 "*Unable to bracket root"))
547 (if (= iters calc-internal-prec
)
548 (setq factor
'(float 16 -
1)))
549 (setq diff
(math-mul-float (math-sub-float high low
) factor
))
550 (if (Math-zerop diff
)
551 (setq high
(calcFunc-incr high
10))
552 (if (math-lessp-float (math-abs vlow
) (math-abs vhigh
))
555 low
(math-sub low diff
)
558 vlow
(math-evaluate-expr expr
))
561 high
(math-add high diff
)
564 vhigh
(math-evaluate-expr expr
)))))
567 (setq high prev vhigh vprev
)
568 (setq low prev vlow vprev
)))
570 (or (Math-realp vlow
)
571 (math-reject-arg vlow
'realp
))
572 (or (Math-realp vhigh
)
573 (math-reject-arg vhigh
'realp
))
574 (let ((xvals (list low high
))
575 (yvals (list vlow vhigh
))
576 (pos (Math-posp vlow
))
578 (step (math-sub-float high low
))
580 (while (and (<= (setq levels
(1+ levels
)) 5)
584 step
(math-mul-float step
'(float 497 -
3)))
585 (while (and (cdr xp
) (not found
))
586 (if (Math-realp (car yp
))
589 (setq high
(math-add-float (car xp
) step
)
591 vhigh
(math-evaluate-expr expr
))
592 (math-working "search" high
)
593 (if (and (Math-realp vhigh
)
594 (eq (math-negp vhigh
) pos
))
596 (setcdr xp
(cons high
(cdr xp
)))
597 (setcdr yp
(cons vhigh
(cdr yp
)))
598 (setq xp
(cdr (cdr xp
))
599 yp
(cdr (cdr yp
))))))))
601 (if (Math-zerop vhigh
)
602 (list 'vec high vhigh
)
603 (if (Math-zerop vlow
)
606 (math-newton-search-root expr deriv nil nil nil nil
608 (math-bisect-root expr low vlow high vhigh
))))
609 (math-reject-arg (list 'intv
3 low high
)
610 "*Unable to find a sign change in this interval"))))
612 ;;; "rtbis" (but we should be using Brent's method)
613 (defun math-bisect-root (expr low vlow high vhigh
)
614 (let ((step (math-sub-float high low
))
615 (pos (Math-posp vhigh
))
618 (while (not (or (math-nearly-equal low
619 (setq step
(math-mul-float
621 mid
(math-add-float low step
)))
624 vmid
(math-evaluate-expr expr
))
626 (math-working "bisect" mid
)
627 (if (eq (Math-posp vmid
) pos
)
632 (list 'vec mid vmid
)))
636 (defvar math-root-vars
[(var DUMMY var-DUMMY
)])
638 (defun math-newton-multi (expr jacob n guess orig-guess limit
)
641 p2 expr-val jacob-val next
)
642 (while (< (setq p
(cdr p
) m
(1+ m
)) n
)
643 (set (nth 2 (aref math-root-vars m
)) (car p
)))
644 (setq expr-val
(math-evaluate-expr expr
)
645 jacob-val
(math-evaluate-expr jacob
))
646 (unless (and (math-constp expr-val
)
647 (math-constp jacob-val
))
648 (math-reject-arg guess
"*Newton's method encountered a singularity"))
649 (setq next
(math-add guess
(math-div (math-float (math-neg expr-val
))
650 (math-float jacob-val
)))
652 (math-working "newton" next
)
653 (while (and (setq p
(cdr p
) p2
(cdr p2
))
654 (math-nearly-equal (car p
) (car p2
))))
656 (if (Math-lessp (math-abs-approx (math-sub next orig-guess
))
658 (math-newton-multi expr jacob n next orig-guess limit
)
659 (math-reject-arg nil
"*Newton's method failed to converge"))
660 (list 'vec next expr-val
))))
663 (defun math-find-root (expr var guess math-root-widen
)
664 (if (eq (car-safe expr
) 'vec
)
665 (let ((n (1- (length expr
)))
666 (calc-symbolic-mode nil
)
670 (unless (eq (car-safe var
) 'vec
)
671 (math-reject-arg var
'vectorp
))
672 (unless (= (length var
) (1+ n
))
673 (math-dimension-error))
674 (setq expr
(copy-sequence expr
))
675 (while (>= n
(length math-root-vars
))
676 (let ((symb (intern (concat "math-root-v"
678 (length math-root-vars
))))))
679 (setq math-root-vars
(vconcat math-root-vars
680 (vector (list 'var symb symb
))))))
682 (while (< (setq m
(1+ m
)) n
)
683 (set (nth 2 (aref math-root-vars m
)) nil
))
685 (while (setq m
(1+ m
) p
(cdr p
))
686 (or (eq (car-safe (car p
)) 'var
)
687 (math-reject-arg var
"*Expected a variable"))
689 (while (setq p2
(cdr p2
))
690 (setcar p2
(math-expr-subst (car p2
) (car p
)
691 (aref math-root-vars m
)))))
692 (unless (eq (car-safe guess
) 'vec
)
693 (math-reject-arg guess
'vectorp
))
694 (unless (= (length guess
) (1+ n
))
695 (math-dimension-error))
696 (setq guess
(copy-sequence guess
)
698 (while (setq p
(cdr p
))
699 (or (Math-numberp (car guess
))
700 (math-reject-arg guess
'numberp
))
701 (setcar p
(math-float (car p
))))
703 (while (setq p
(cdr p
))
704 (if (assq (car-safe (car p
)) calc-tweak-eqn-table
)
705 (setcar p
(math-sub (nth 1 (car p
)) (nth 2 (car p
)))))
706 (setcar p
(math-evaluate-expr (car p
)))
707 (setq row
(list 'vec
)
709 (while (< (setq m
(1+ m
)) n
)
710 (nconc row
(list (math-evaluate-expr
711 (or (calcFunc-deriv (car p
)
712 (aref math-root-vars m
)
716 "*Formulas must be differentiable"))))))
717 (nconc jacob
(list row
)))
718 (setq m
(math-abs-approx guess
))
719 (math-newton-multi expr jacob n guess guess
720 (if (math-zerop m
) '(float 1 3) (math-mul m
10))))
721 (unless (eq (car-safe var
) 'var
)
722 (math-reject-arg var
"*Expected a variable"))
723 (unless (math-expr-contains expr var
)
724 (math-reject-arg expr
"*Formula does not contain specified variable"))
725 (if (assq (car expr
) calc-tweak-eqn-table
)
726 (setq expr
(math-sub (nth 1 expr
) (nth 2 expr
))))
727 (math-with-extra-prec 2
728 (setq expr
(math-expr-subst expr var
'(var DUMMY var-DUMMY
)))
729 (let* ((calc-symbolic-mode nil
)
731 (expr (math-evaluate-expr expr
))
732 (deriv (calcFunc-deriv expr
'(var DUMMY var-DUMMY
) nil t
))
734 (and deriv
(setq deriv
(math-evaluate-expr deriv
)))
735 (setq guess
(math-float guess
))
736 (if (and (math-numberp guess
)
738 (math-newton-root expr deriv guess guess
739 (if (math-zerop guess
) '(float 1 6)
740 (math-mul (math-abs-approx guess
) 100)))
741 (if (Math-realp guess
)
745 vlow
(math-evaluate-expr expr
)
747 math-root-widen
'point
)
748 (if (eq (car guess
) 'intv
)
750 (or (math-constp guess
) (math-reject-arg guess
'constp
))
751 (setq low
(nth 2 guess
)
753 (if (memq (nth 1 guess
) '(0 1))
754 (setq low
(calcFunc-incr low
1 high
)))
755 (if (memq (nth 1 guess
) '(0 2))
756 (setq high
(calcFunc-incr high -
1 low
)))
758 vlow
(math-evaluate-expr expr
)
760 vhigh
(math-evaluate-expr expr
)))
761 (if (math-complexp guess
)
762 (math-reject-arg "*Complex root finder must have derivative")
763 (math-reject-arg guess
'realp
))))
764 (if (Math-zerop vlow
)
766 (if (Math-zerop vhigh
)
767 (list 'vec high vhigh
)
768 (if (and deriv
(Math-numberp vlow
) (Math-numberp vhigh
))
769 (math-newton-search-root expr deriv nil nil nil nil
771 (if (or (and (Math-posp vlow
) (Math-posp vhigh
))
772 (and (Math-negp vlow
) (Math-negp vhigh
))
773 (not (Math-numberp vlow
))
774 (not (Math-numberp vhigh
)))
775 (math-search-root expr deriv low vlow high vhigh
)
776 (math-bisect-root expr low vlow high vhigh
))))))))))
778 (defun calcFunc-root (expr var guess
)
779 (math-find-root expr var guess nil
))
781 (defun calcFunc-wroot (expr var guess
)
782 (math-find-root expr var guess t
))
787 ;;; The following algorithms come from Numerical Recipes, chapter 10.
789 (defvar math-min-vars
[(var DUMMY var-DUMMY
)])
791 (defun math-min-eval (expr a
)
794 (while (setq m
(1+ m
) a
(cdr a
))
795 (set (nth 2 (aref math-min-vars m
)) (car a
))))
797 (setq a
(math-evaluate-expr expr
))
800 (if (eq (car a
) 'float
)
802 (math-reject-arg a
'realp
))))
804 (defvar math-min-or-max
"minimum")
806 ;;; A bracket for a minimum is a < b < c where f(b) < f(a) and f(b) < f(c).
809 (defun math-widen-min (expr a b
)
812 incr c va vb vc u vu r q ulim bc ba qr
)
813 (or b
(setq b
(math-mul a
'(float 101 -
2))))
814 (setq va
(math-min-eval expr a
)
815 vb
(math-min-eval expr b
))
816 (if (math-lessp-float va vb
)
819 (setq c
(math-add-float b
(math-mul-float '(float 161803 -
5)
820 (math-sub-float b a
)))
821 vc
(math-min-eval expr c
))
822 (while (and (not done
) (math-lessp-float vc vb
))
823 (math-working "widen" (list 'intv
0 a c
))
824 (if (= (setq iters
(1- iters
)) 0)
825 (math-reject-arg nil
(format "*Unable to find a %s near the interval"
827 (setq bc
(math-sub-float b c
)
828 ba
(math-sub-float b a
)
829 r
(math-mul-float ba
(math-sub-float vb vc
))
830 q
(math-mul-float bc
(math-sub-float vb va
))
831 qr
(math-sub-float q r
))
832 (if (math-lessp-float (math-abs qr
) '(float 1 -
20))
833 (setq qr
(if (math-negp qr
) '(float -
1 -
20) '(float 1 -
20))))
834 (setq u
(math-sub-float
836 (math-div-float (math-sub-float (math-mul-float bc q
)
837 (math-mul-float ba r
))
838 (math-mul-float '(float 2 0) qr
)))
839 ulim
(math-add-float b
(math-mul-float '(float -
1 2) bc
))
841 (if (if incr
(math-lessp-float b u
) (math-lessp-float u b
))
842 (if (if incr
(math-lessp-float u c
) (math-lessp-float c u
))
843 (if (math-lessp-float (setq vu
(math-min-eval expr u
)) vc
)
847 (if (math-lessp-float vb vu
)
850 (setq u
(math-add-float c
(math-mul-float '(float -
161803 -
5)
852 vu
(math-min-eval expr u
))))
853 (if (if incr
(math-lessp-float u ulim
) (math-lessp-float ulim u
))
854 (if (math-lessp-float (setq vu
(math-min-eval expr u
)) vc
)
857 u
(math-add-float c
(math-mul-float
859 (math-sub-float b c
)))
860 vu
(math-min-eval expr u
)))
862 vu
(math-min-eval expr u
))))
863 (setq u
(math-add-float c
(math-mul-float '(float -
161803 -
5)
865 vu
(math-min-eval expr u
)))
869 (if (math-lessp-float a c
)
870 (list a va b vb c vc
)
871 (list c vc b vb a va
))))
873 (defun math-narrow-min (expr a c intv
)
874 (let ((xvals (list a c
))
875 (yvals (list (math-min-eval expr a
)
876 (math-min-eval expr c
)))
878 (step (math-sub-float c a
))
881 (while (and (<= (setq levels
(1+ levels
)) 5)
885 step
(math-mul-float step
'(float 497 -
3)))
886 (while (and (cdr xp
) (not found
))
887 (setq b
(math-add-float (car xp
) step
))
888 (math-working "search" b
)
889 (setcdr xp
(cons b
(cdr xp
)))
890 (setcdr yp
(cons (math-min-eval expr b
) (cdr yp
)))
891 (if (and (math-lessp-float (nth 1 yp
) (car yp
))
892 (math-lessp-float (nth 1 yp
) (nth 2 yp
)))
896 (if (and (cdr (cdr yp
))
897 (math-lessp-float (nth 1 yp
) (car yp
))
898 (math-lessp-float (nth 1 yp
) (nth 2 yp
)))
903 (list (car xp
) (car yp
)
904 (nth 1 xp
) (nth 1 yp
)
905 (nth 2 xp
) (nth 2 yp
))
906 (or (if (math-lessp-float (car yvals
) (nth 1 yvals
))
907 (and (memq (nth 1 intv
) '(2 3))
908 (let ((min (car yvals
)))
909 (while (and (setq yvals
(cdr yvals
))
910 (math-lessp-float min
(car yvals
))))
912 (list (nth 2 intv
) min
))))
913 (and (memq (nth 1 intv
) '(1 3))
914 (setq yvals
(nreverse yvals
))
915 (let ((min (car yvals
)))
916 (while (and (setq yvals
(cdr yvals
))
917 (math-lessp-float min
(car yvals
))))
919 (list (nth 3 intv
) min
)))))
920 (math-reject-arg nil
(format "*Unable to find a %s in the interval"
921 math-min-or-max
))))))
924 (defun math-brent-min (expr prec a va x vx b vb
)
925 (let ((iters (+ 20 (* 5 prec
)))
930 (tol (list 'float
1 (- -
1 prec
)))
931 (zeps (list 'float
1 (- -
5 prec
)))
933 d u vu xm tol1 tol2 etemp p q r xv xw
)
935 (setq xm
(math-mul-float '(float 5 -
1)
936 (math-add-float a b
))
939 (math-mul-float tol
(math-abs x
)))
940 tol2
(math-mul-float tol1
'(float 2 0)))
941 (math-lessp-float (math-sub-float tol2
944 (math-sub-float b a
)))
945 (math-abs (math-sub-float x xm
))))
946 (if (= (setq iters
(1- iters
)) 0)
947 (math-reject-arg nil
(format "*Unable to converge on a %s"
949 (math-working "brent" x
)
950 (if (math-lessp-float (math-abs e
) tol1
)
951 (setq e
(if (math-lessp-float x xm
)
953 (math-sub-float a x
))
954 d
(math-mul-float '(float 381966 -
6) e
))
955 (setq xw
(math-sub-float x w
)
956 r
(math-mul-float xw
(math-sub-float vx vv
))
957 xv
(math-sub-float x v
)
958 q
(math-mul-float xv
(math-sub-float vx vw
))
959 p
(math-sub-float (math-mul-float xv q
)
960 (math-mul-float xw r
))
961 q
(math-mul-float '(float 2 0) (math-sub-float q r
)))
963 (setq p
(math-neg-float p
))
964 (setq q
(math-neg-float q
)))
967 (if (and (math-lessp-float (math-abs p
)
968 (math-abs (math-mul-float
970 (math-mul-float q etemp
))))
971 (math-lessp-float (math-mul-float
972 q
(math-sub-float a x
)) p
)
973 (math-lessp-float p
(math-mul-float
974 q
(math-sub-float b x
))))
976 (setq d
(math-div-float p q
)
977 u
(math-add-float x d
))
978 (if (or (math-lessp-float (math-sub-float u a
) tol2
)
979 (math-lessp-float (math-sub-float b u
) tol2
))
980 (setq d
(if (math-lessp-float xm x
)
981 (math-neg-float tol1
)
983 (setq e
(if (math-lessp-float x xm
)
985 (math-sub-float a x
))
986 d
(math-mul-float '(float 381966 -
6) e
))))
987 (setq u
(math-add-float x
988 (if (math-lessp-float (math-abs d
) tol1
)
990 (math-neg-float tol1
)
993 vu
(math-min-eval expr u
))
994 (if (math-lessp-float vx vu
)
996 (if (math-lessp-float u x
)
1000 (not (math-lessp-float vw vu
)))
1005 (not (math-lessp-float vv vu
)))
1007 (if (math-lessp-float u x
)
1016 (defun math-powell-min (expr n guesses prec
)
1017 (let* ((f1dim (math-line-min-func expr n
))
1018 (xi (calcFunc-idn 1 n
))
1019 (p (cons 'vec
(mapcar 'car guesses
)))
1021 (ftol (list 'float
1 (- prec
)))
1022 (fret (math-min-eval expr p
))
1023 fp ptt fptt xit i ibig del diff res
)
1029 (while (<= (setq i
(1+ i
)) n
)
1031 res
(math-line-min f1dim p
1034 p
(let ((calc-internal-prec prec
))
1035 (math-normalize (car res
)))
1037 diff
(math-abs (math-sub-float fptt fret
)))
1038 (if (math-lessp-float del diff
)
1042 (math-mul-float ftol
1043 (math-add-float (math-abs fp
)
1045 (math-mul-float '(float 2 0)
1046 (math-abs (math-sub-float fp
1048 (setq ptt
(math-sub (math-mul '(float 2 0) p
) pt
)
1051 fptt
(math-min-eval expr ptt
))
1052 (if (and (math-lessp-float fptt fp
)
1055 (math-mul-float '(float 2 0)
1058 (math-mul-float '(float 2 0)
1061 (math-sqr-float (math-sub-float
1062 (math-sub-float fp fret
) del
)))
1064 (math-sqr-float (math-sub-float fp fptt
)))))
1066 (setq res
(math-line-min f1dim p xit n prec
)
1070 (while (<= (setq i
(1+ i
)) n
)
1071 (setcar (nthcdr ibig
(nth i xi
))
1072 (nth i
(nth 1 res
)))))))
1073 (list 'vec p fret
)))
1075 (defun math-line-min-func (expr n
)
1077 (while (< (setq m
(1+ m
)) n
)
1078 (set (nth 2 (aref math-min-vars m
))
1081 '(var DUMMY var-DUMMY
)
1082 (list 'calcFunc-mrow
'(var line-xi line-xi
) (1+ m
)))
1083 (list 'calcFunc-mrow
'(var line-p line-p
) (1+ m
)))))
1084 (math-evaluate-expr expr
)))
1086 (defun math-line-min (f1dim line-p line-xi n prec
)
1087 (let* ((var-DUMMY nil
)
1088 (expr (math-evaluate-expr f1dim
))
1089 (params (math-widen-min expr
'(float 0 0) '(float 1 0)))
1090 (res (apply 'math-brent-min expr prec params
))
1091 (xi (math-mul (nth 1 res
) line-xi
)))
1092 (list (math-add line-p xi
) xi
(nth 2 res
))))
1095 (defun math-find-minimum (expr var guess min-widen
)
1096 (let* ((calc-symbolic-mode nil
)
1099 (isvec (math-vectorp var
))
1101 (or (math-vectorp var
)
1102 (setq var
(list 'vec var
)))
1103 (or (math-vectorp guess
)
1104 (setq guess
(list 'vec guess
)))
1105 (or (= (length var
) (length guess
))
1106 (math-dimension-error))
1107 (while (setq var
(cdr var
) guess
(cdr guess
))
1108 (or (eq (car-safe (car var
)) 'var
)
1109 (math-reject-arg (car var
) "*Expected a variable"))
1110 (or (math-expr-contains expr
(car var
))
1111 (math-reject-arg (car var
)
1112 "*Formula does not contain specified variable"))
1113 (while (>= (1+ n
) (length math-min-vars
))
1114 (let ((symb (intern (concat "math-min-v"
1116 (length math-min-vars
))))))
1117 (setq math-min-vars
(vconcat math-min-vars
1118 (vector (list 'var symb symb
))))))
1119 (set (nth 2 (aref math-min-vars n
)) nil
)
1120 (set (nth 2 (aref math-min-vars
(1+ n
))) nil
)
1121 (if (math-complexp (car guess
))
1122 (setq expr
(math-expr-subst expr
1124 (list '+ (aref math-min-vars n
)
1126 (aref math-min-vars
(1+ n
))
1128 guesses
(let ((g (math-float (math-complex (car guess
)))))
1129 (cons (list (nth 2 g
) nil nil
)
1130 (cons (list (nth 1 g
) nil nil t
)
1133 (setq expr
(math-expr-subst expr
1135 (aref math-min-vars n
))
1136 guesses
(cons (if (math-realp (car guess
))
1137 (list (math-float (car guess
)) nil nil
)
1138 (if (and (eq (car-safe (car guess
)) 'intv
)
1139 (math-constp (car guess
)))
1141 (math-add (nth 2 (car guess
))
1142 (nth 3 (car guess
)))
1144 (math-float (nth 2 (car guess
)))
1145 (math-float (nth 3 (car guess
)))
1147 (math-reject-arg (car guess
) 'realp
)))
1150 (setq guesses
(nreverse guesses
)
1151 expr
(math-evaluate-expr expr
))
1153 (let* ((params (if (nth 1 (car guesses
))
1155 (math-widen-min expr
1156 (nth 1 (car guesses
))
1157 (nth 2 (car guesses
)))
1158 (math-narrow-min expr
1159 (nth 1 (car guesses
))
1160 (nth 2 (car guesses
))
1161 (nth 3 (car guesses
))))
1162 (math-widen-min expr
1165 (prec calc-internal-prec
)
1166 (res (if (cdr (cdr params
))
1167 (math-with-extra-prec (+ calc-internal-prec
2)
1168 (apply 'math-brent-min expr prec params
))
1169 (cons 'vec params
))))
1171 (list 'vec
(list 'vec
(nth 1 res
)) (nth 2 res
))
1173 (let* ((prec calc-internal-prec
)
1174 (res (math-with-extra-prec (+ calc-internal-prec
2)
1175 (math-powell-min expr n guesses prec
)))
1178 (while (setq p
(cdr p
))
1179 (if (nth 3 (car guesses
))
1181 (nconc vec
(list (math-normalize
1182 (list 'cplx
(car p
) (nth 1 p
)))))
1184 guesses
(cdr guesses
)))
1185 (nconc vec
(list (car p
))))
1186 (setq guesses
(cdr guesses
)))
1188 (list 'vec vec
(nth 2 res
))
1189 (list 'vec
(nth 1 vec
) (nth 2 res
)))))))
1191 (defun calcFunc-minimize (expr var guess
)
1192 (let ((calc-internal-prec (max (/ calc-internal-prec
2) 3))
1193 (math-min-or-max "minimum"))
1194 (math-find-minimum (math-normalize expr
)
1195 (math-normalize var
)
1196 (math-normalize guess
) nil
)))
1198 (defun calcFunc-wminimize (expr var guess
)
1199 (let ((calc-internal-prec (max (/ calc-internal-prec
2) 3))
1200 (math-min-or-max "minimum"))
1201 (math-find-minimum (math-normalize expr
)
1202 (math-normalize var
)
1203 (math-normalize guess
) t
)))
1205 (defun calcFunc-maximize (expr var guess
)
1206 (let* ((calc-internal-prec (max (/ calc-internal-prec
2) 3))
1207 (math-min-or-max "maximum")
1208 (res (math-find-minimum (math-normalize (math-neg expr
))
1209 (math-normalize var
)
1210 (math-normalize guess
) nil
)))
1211 (list 'vec
(nth 1 res
) (math-neg (nth 2 res
)))))
1213 (defun calcFunc-wmaximize (expr var guess
)
1214 (let* ((calc-internal-prec (max (/ calc-internal-prec
2) 3))
1215 (math-min-or-max "maximum")
1216 (res (math-find-minimum (math-normalize (math-neg expr
))
1217 (math-normalize var
)
1218 (math-normalize guess
) t
)))
1219 (list 'vec
(nth 1 res
) (math-neg (nth 2 res
)))))
1224 ;;; The following algorithms come from Numerical Recipes, chapter 3.
1226 (defun calcFunc-polint (data x
)
1227 (or (math-matrixp data
) (math-reject-arg data
'matrixp
))
1228 (or (= (length data
) 3)
1229 (math-reject-arg data
"*Wrong number of data rows"))
1230 (or (> (length (nth 1 data
)) 2)
1231 (math-reject-arg data
"*Too few data points"))
1232 (if (and (math-vectorp x
) (or (math-constp x
) math-expand-formulas
))
1233 (cons 'vec
(mapcar (function (lambda (x) (calcFunc-polint data x
)))
1235 (or (math-objectp x
) math-expand-formulas
(math-reject-arg x
'objectp
))
1236 (math-with-extra-prec 2
1237 (cons 'vec
(math-poly-interp (cdr (nth 1 data
)) (cdr (nth 2 data
)) x
1239 (put 'calcFunc-polint
'math-expandable t
)
1242 (defun calcFunc-ratint (data x
)
1243 (or (math-matrixp data
) (math-reject-arg data
'matrixp
))
1244 (or (= (length data
) 3)
1245 (math-reject-arg data
"*Wrong number of data rows"))
1246 (or (> (length (nth 1 data
)) 2)
1247 (math-reject-arg data
"*Too few data points"))
1248 (if (and (math-vectorp x
) (or (math-constp x
) math-expand-formulas
))
1249 (cons 'vec
(mapcar (function (lambda (x) (calcFunc-ratint data x
)))
1251 (or (math-objectp x
) math-expand-formulas
(math-reject-arg x
'objectp
))
1252 (math-with-extra-prec 2
1253 (cons 'vec
(math-poly-interp (cdr (nth 1 data
)) (cdr (nth 2 data
)) x
1254 (cdr (cdr (cdr (nth 1 data
)))))))))
1255 (put 'calcFunc-ratint
'math-expandable t
)
1258 (defun math-poly-interp (xa ya x ratp
)
1259 (let ((n (length xa
))
1263 (c (copy-sequence ya
))
1264 (d (copy-sequence ya
))
1267 y dy
(xp xa
) xpm cp dp temp
)
1268 (while (<= (setq i
(1+ i
)) n
)
1269 (setq xax
(cons (math-sub (car xp
) x
) xax
)
1271 temp
(math-abs (car xax
)))
1272 (if (or (null dif
) (math-lessp temp dif
))
1275 (setq xax
(nreverse xax
)
1278 (if (math-zerop dif
)
1280 (while (< (setq m
(1+ m
)) n
)
1286 (while (<= (setq i
(1+ i
)) (- n m
))
1288 (let ((t2 (math-div (math-mul (car xp
) (car dp
)) (car xpm
))))
1289 (setq temp
(math-div (math-sub (nth 1 cp
) (car dp
))
1290 (math-sub t2
(nth 1 cp
))))
1291 (setcar dp
(math-mul (nth 1 cp
) temp
))
1292 (setcar cp
(math-mul t2 temp
)))
1293 (if (math-equal (car xp
) (car xpm
))
1294 (math-reject-arg (cons 'vec xa
) "*Duplicate X values"))
1295 (setq temp
(math-div (math-sub (nth 1 cp
) (car dp
))
1296 (math-sub (car xp
) (car xpm
))))
1297 (setcar dp
(math-mul (car xpm
) temp
))
1298 (setcar cp
(math-mul (car xp
) temp
)))
1303 (if (< (+ ns ns
) (- n m
))
1304 (setq dy
(nth ns c
))
1307 (setq y
(math-add y dy
)))
1312 ;;; The following algorithms come from Numerical Recipes, chapter 4.
1314 (defun calcFunc-ninteg (expr var lo hi
)
1315 (setq lo
(math-evaluate-expr lo
)
1316 hi
(math-evaluate-expr hi
))
1317 (or (math-numberp lo
) (math-infinitep lo
) (math-reject-arg lo
'numberp
))
1318 (or (math-numberp hi
) (math-infinitep hi
) (math-reject-arg hi
'numberp
))
1319 (if (math-lessp hi lo
)
1320 (math-neg (calcFunc-ninteg expr var hi lo
))
1321 (setq expr
(math-expr-subst expr var
'(var DUMMY var-DUMMY
)))
1322 (let ((var-DUMMY nil
)
1323 (calc-symbolic-mode nil
)
1324 (calc-prefer-frac nil
)
1326 (setq expr
(math-evaluate-expr expr
))
1327 (if (equal lo
'(neg (var inf var-inf
)))
1328 (let ((thi (if (math-lessp hi
'(float -
2 0))
1330 (setq sum
(math-ninteg-romberg
1331 'math-ninteg-midpoint expr
1332 (math-float lo
) (math-float thi
) 'inf
)
1334 (if (equal hi
'(var inf var-inf
))
1335 (let ((tlo (if (math-lessp '(float 2 0) lo
)
1337 (setq sum
(math-add sum
1338 (math-ninteg-romberg
1339 'math-ninteg-midpoint expr
1340 (math-float tlo
) (math-float hi
) 'inf
))
1342 (or (math-equal lo hi
)
1343 (setq sum
(math-add sum
1344 (math-ninteg-romberg
1345 'math-ninteg-midpoint expr
1346 (math-float lo
) (math-float hi
) nil
))))
1350 ;;; Open Romberg method; "qromo" in section 4.4.
1352 ;; The variable math-ninteg-temp is local to math-ninteg-romberg,
1353 ;; but is used by math-ninteg-midpoint, which is used by
1354 ;; math-ninteg-romberg.
1355 (defvar math-ninteg-temp
)
1357 (defun math-ninteg-romberg (func expr lo hi mode
)
1358 (let ((curh '(float 1 0))
1363 (prec calc-internal-prec
)
1364 (math-ninteg-temp nil
))
1365 (math-with-extra-prec 2
1366 ;; Limit on "j" loop must be 14 or less to keep "it" from overflowing.
1367 (or (while (and (null ss
) (<= (setq j
(1+ j
)) 8))
1368 (setq s
(nconc s
(list (funcall func expr lo hi mode
)))
1369 h
(nconc h
(list curh
)))
1371 (let ((res (math-poly-interp h s
'(float 0 0) nil
)))
1372 (if (math-lessp (math-abs (nth 1 res
))
1373 (calcFunc-scf (math-abs (car res
))
1375 (setq ss
(car res
)))))
1379 (setq curh
(math-div-float curh
'(float 9 0))))
1381 (math-reject-arg nil
(format "*Integral failed to converge"))))))
1384 (defun math-ninteg-evaluate (expr x mode
)
1386 (setq x
(math-div '(float 1 0) x
)))
1387 (let* ((var-DUMMY x
)
1388 (res (math-evaluate-expr expr
)))
1389 (or (Math-numberp res
)
1390 (math-reject-arg res
"*Integrand does not evaluate to a number"))
1392 (setq res
(math-mul res
(math-sqr x
))))
1396 (defun math-ninteg-midpoint (expr lo hi mode
) ; uses "math-ninteg-temp"
1398 (let ((math-infinite-mode t
) temp
)
1399 (setq temp
(math-div 1 lo
)
1402 (if math-ninteg-temp
1403 (let* ((it3 (* 3 (car math-ninteg-temp
)))
1404 (math-working-step-2 (* 2 (car math-ninteg-temp
)))
1405 (math-working-step 0)
1406 (range (math-sub hi lo
))
1407 (del (math-div range
(math-float it3
)))
1408 (del2 (math-add del del
))
1409 (del3 (math-add del del2
))
1410 (x (math-add lo
(math-mul '(float 5 -
1) del
)))
1413 (while (<= (setq j
(1+ j
)) (car math-ninteg-temp
))
1414 (setq math-working-step
(1+ math-working-step
)
1415 temp
(math-ninteg-evaluate expr x mode
)
1416 math-working-step
(1+ math-working-step
)
1417 sum
(math-add sum
(math-add temp
(math-ninteg-evaluate
1418 expr
(math-add x del2
)
1420 x
(math-add x del3
)))
1421 (setq math-ninteg-temp
(list it3
1422 (math-add (math-div (nth 1 math-ninteg-temp
)
1424 (math-mul sum del
)))))
1425 (setq math-ninteg-temp
(list 1 (math-mul
1427 (math-ninteg-evaluate
1429 (math-mul (math-add lo hi
) '(float 5 -
1))
1431 (nth 1 math-ninteg-temp
))
1437 ;;; The following algorithms come from Numerical Recipes, chapter 14.
1439 (defvar math-dummy-vars
[(var DUMMY var-DUMMY
)])
1440 (defvar math-dummy-counter
0)
1441 (defun math-dummy-variable ()
1442 (if (= math-dummy-counter
(length math-dummy-vars
))
1443 (let ((symb (intern (format "math-dummy-%d" math-dummy-counter
))))
1444 (setq math-dummy-vars
(vconcat math-dummy-vars
1445 (vector (list 'var symb symb
))))))
1446 (set (nth 2 (aref math-dummy-vars math-dummy-counter
)) nil
)
1448 (aref math-dummy-vars math-dummy-counter
)
1449 (setq math-dummy-counter
(1+ math-dummy-counter
))))
1451 (defvar math-in-fit
0)
1452 (defvar calc-fit-to-trail nil
)
1454 (defun calcFunc-fit (expr vars
&optional coefs data
)
1455 (let ((math-in-fit 10))
1456 (math-with-extra-prec 2
1457 (math-general-fit expr vars coefs data nil
))))
1459 (defun calcFunc-efit (expr vars
&optional coefs data
)
1460 (let ((math-in-fit 10))
1461 (math-with-extra-prec 2
1462 (math-general-fit expr vars coefs data
'sdev
))))
1464 (defun calcFunc-xfit (expr vars
&optional coefs data
)
1465 (let ((math-in-fit 10))
1466 (math-with-extra-prec 2
1467 (math-general-fit expr vars coefs data
'full
))))
1469 ;; The variables math-fit-first-var, math-fit-first-coef and
1470 ;; math-fit-new-coefs are local to math-general-fit, but are used by
1471 ;; calcFunc-fitvar, calcFunc-fitparam and calcFunc-fitdummy
1472 ;; (respectively), which are used by math-general-fit.
1473 (defvar math-fit-first-var
)
1474 (defvar math-fit-first-coef
)
1475 (defvar math-fit-new-coefs
)
1477 (defun math-general-fit (expr vars coefs data mode
)
1478 (let ((calc-simplify-mode nil
)
1479 (math-dummy-counter math-dummy-counter
)
1481 (extended (eq mode
'full
))
1482 (math-fit-first-coef math-dummy-counter
)
1486 have-sdevs need-chisq chisq
1494 (var-YVAL nil
) (var-YVALX nil
)
1496 n nn m mm v dummy p
)
1498 ;; Validate and parse arguments.
1503 (if (math-vectorp expr
)
1504 (if (memq (length expr
) '(3 4))
1509 (math-dimension-error))
1513 (or (math-matrixp data
) (math-reject-arg data
'matrixp
))
1514 (setq v
(1- (length data
))
1515 n
(1- (length (nth 1 data
))))
1516 (or (math-vectorp vars
) (null vars
)
1517 (setq vars
(list 'vec vars
)))
1518 (or (math-vectorp coefs
) (null coefs
)
1519 (setq coefs
(list 'vec coefs
)))
1521 (setq coefs
(cons 'vec
(math-all-vars-but expr vars
))))
1523 (if (<= (1- (length coefs
)) v
)
1524 (math-reject-arg coefs
"*Not enough variables in model")
1525 (setq coefs
(copy-sequence coefs
))
1526 (let ((p (nthcdr (- (length coefs
) v
1527 (if (eq (car-safe expr
) 'calcFunc-eq
) 1 0))
1529 (setq vars
(cons 'vec
(cdr p
)))
1531 (or (= (1- (length vars
)) v
)
1533 (math-reject-arg vars
"*Number of variables does not match data"))
1534 (setq m
(1- (length coefs
)))
1536 (math-reject-arg coefs
"*Need at least one parameter"))
1538 ;; Rewrite expr in terms of fitparam and fitvar, make into an equation.
1540 (while (setq p
(cdr p
))
1541 (or (eq (car-safe (car p
)) 'var
)
1542 (math-reject-arg (car p
) "*Expected a variable"))
1543 (setq dummy
(math-dummy-variable)
1544 expr
(math-expr-subst expr
(car p
)
1545 (list 'calcFunc-fitparam
1546 (- math-dummy-counter math-fit-first-coef
)))))
1547 (setq math-fit-first-var math-dummy-counter
1549 (while (setq p
(cdr p
))
1550 (or (eq (car-safe (car p
)) 'var
)
1551 (math-reject-arg (car p
) "*Expected a variable"))
1552 (setq dummy
(math-dummy-variable)
1553 expr
(math-expr-subst expr
(car p
)
1554 (list 'calcFunc-fitvar
1555 (- math-dummy-counter math-fit-first-var
)))))
1556 (if (< math-dummy-counter
(+ math-fit-first-var v
))
1557 (setq dummy
(math-dummy-variable))) ; dependent variable may be unnamed
1560 (or (eq (car-safe expr
) 'calcFunc-eq
)
1561 (setq expr
(list 'calcFunc-eq
(list 'calcFunc-fitvar v
) expr
)))
1563 (let ((calc-symbolic-mode nil
))
1565 ;; Apply rewrites to put expr into a linear-like form.
1566 (setq expr
(math-evaluate-expr expr
)
1567 expr
(math-rewrite (list 'calcFunc-fitmodel expr
)
1568 '(var FitRules var-FitRules
))
1570 expr
(math-evaluate-expr expr
))
1571 (or (and (eq (car-safe expr
) 'calcFunc-fitsystem
)
1573 (math-vectorp (nth 2 expr
))
1574 (math-vectorp (nth 3 expr
))
1575 (> (length (nth 2 expr
)) 1)
1576 (= (length (nth 3 expr
)) (1+ m
)))
1577 (math-reject-arg plain-expr
"*Model expression is too complex"))
1578 (setq y-filter
(nth 1 expr
)
1579 x-funcs
(vconcat (cdr (nth 2 expr
)))
1580 coef-filters
(nth 3 expr
)
1581 mm
(length x-funcs
))
1582 (if (equal y-filter y-dummy
)
1583 (setq y-filter nil
))
1585 ;; Build the (square) system of linear equations to be solved.
1586 (setq beta
(cons 'vec
(make-list mm
0))
1587 covar
(cons 'vec
(mapcar 'copy-sequence
(make-list mm beta
))))
1588 (let* ((ptrs (vconcat (cdr data
)))
1590 (xvals (make-vector mm
0))
1592 j k xval yval sigmasqr wt covj covjk covk betaj lud
)
1593 (while (<= (setq i
(1+ i
)) n
)
1595 ;; Assign various independent variables for this data point.
1599 (aset ptrs j
(cdr (aref ptrs j
)))
1600 (setq xval
(car (aref ptrs j
)))
1604 (if (eq (car-safe xval
) 'sdev
)
1605 (setq sigmasqr
(math-add (math-sqr (nth 2 xval
))
1609 (setq xval
(math-make-sdev xval
1610 (math-sqrt sigmasqr
))))))
1611 (if (eq (car-safe xval
) 'sdev
)
1612 (setq sigmasqr
(math-add (math-sqr (nth 2 xval
))
1614 xval
(nth 1 xval
))))
1615 (set (nth 2 (aref math-dummy-vars
(+ math-fit-first-var j
))) xval
)
1618 ;; Compute Y value for this data point.
1620 (setq yval
(math-evaluate-expr y-filter
))
1621 (setq yval
(symbol-value (nth 2 y-dummy
))))
1622 (if (eq (car-safe yval
) 'sdev
)
1623 (setq sigmasqr
(math-sqr (nth 2 yval
))
1626 (setq have-sdevs sigmasqr
1627 need-chisq
(or extended
1628 (and (eq mode
'sdev
) (not have-sdevs
)))))
1632 (setq isigsq
(math-div 1 sigmasqr
))
1634 (setq weights
(cons isigsq weights
))))
1635 (math-reject-arg yval
"*Mixed error forms and plain numbers"))
1637 (math-reject-arg yval
"*Mixed error forms and plain numbers")))
1639 ;; Compute X values for this data point and update covar and beta.
1640 (if (eq (car-safe xval
) 'sdev
)
1641 (set (nth 2 y-dummy
) (nth 1 xval
)))
1646 (setq wt
(math-evaluate-expr (aref x-funcs j
)))
1648 (setq wt
(math-mul wt isigsq
)
1650 covjk
(car (setq covj
(cdr covj
)))
1653 (setq covjk
(cdr covjk
))
1654 (setcar covjk
(math-add (car covjk
)
1655 (math-mul wt
(aref xvals k
))))
1657 (setcar betaj
(math-add (car betaj
) (math-mul wt yval
)))
1660 (setq xy-values
(cons (append xvals
(list yval
)) xy-values
))))
1662 ;; Fill in symmetric half of covar matrix.
1665 (while (< j
(1- mm
))
1668 covjk
(nthcdr j
(car (setq covj
(cdr covj
))))
1669 covk
(nthcdr j covar
))
1670 (while (< (setq k
(1+ k
)) mm
)
1671 (setq covjk
(cdr covjk
)
1673 (setcar covjk
(nth j
(car covk
))))))
1675 ;; Solve the linear system.
1678 (setq covar
(math-matrix-inv-raw covar
))
1680 (setq beta
(math-mul covar beta
))
1681 (if (math-zerop (math-abs beta
))
1682 (setq covar
(calcFunc-diag 0 (1- (length beta
))))
1683 (math-reject-arg orig-expr
"*Singular matrix")))
1684 (or (math-vectorp covar
)
1685 (setq covar
(list 'vec
(list 'vec covar
)))))
1686 (setq beta
(math-div beta covar
)))
1688 ;; Compute chi-square statistic if necessary.
1696 (while (setq bp
(cdr bp
))
1697 (setq sum
(math-add sum
(math-mul (car bp
) (car xp
)))
1699 (setq sum
(math-sqr (math-sub (car xp
) sum
)))
1700 (if weights
(setq sum
(math-mul sum
(car weights
))))
1701 (setq chisq
(math-add chisq sum
)
1702 weights
(cdr weights
)
1703 xy-values
(cdr xy-values
)))))
1705 ;; Convert coefficients back into original terms.
1706 (setq math-fit-new-coefs
(copy-sequence beta
))
1707 (let* ((bp math-fit-new-coefs
)
1712 (and mode
(not have-sdevs
)
1713 (setq sigdat
(if (<= n mm
)
1715 (math-div chisq
(- n mm
)))))
1717 (while (setq bp
(cdr bp
))
1718 (setcar bp
(math-make-sdev
1720 (math-sqrt (math-mul (nth (setq j
(1+ j
))
1721 (car (setq cp
(cdr cp
))))
1723 (setq math-fit-new-coefs
(math-evaluate-expr coef-filters
))
1724 (if calc-fit-to-trail
1725 (let ((bp math-fit-new-coefs
)
1728 (while (setq bp
(cdr bp
) cp
(cdr cp
))
1729 (setq vec
(cons (list 'calcFunc-eq
(car cp
) (car bp
)) vec
)))
1730 (setq calc-fit-to-trail
(cons 'vec
(nreverse vec
)))))))
1732 ;; Substitute best-fit coefficients back into original formula.
1733 (setq expr
(math-multi-subst
1738 (setq vec
(cons (list 'calcFunc-fitvar n
) vec
)
1742 (setq vec
(cons (list 'calcFunc-fitparam n
) vec
)
1745 (append (cdr math-fit-new-coefs
) (cdr vars
))))
1747 ;; Package the result.
1750 (list 'vec expr beta covar
1751 (let ((p coef-filters
)
1753 (while (and (setq n
(1+ n
) p
(cdr p
))
1754 (eq (car-safe (car p
)) 'calcFunc-fitdummy
)
1755 (eq (nth 1 (car p
)) n
)))
1760 (if (and have-sdevs
(> n mm
))
1761 (list 'calcFunc-utpc chisq
(- n mm
))
1762 '(var nan var-nan
)))
1766 (defun calcFunc-fitvar (x)
1767 (if (>= math-in-fit
2)
1769 (setq x
(aref math-dummy-vars
(+ math-fit-first-var x -
1)))
1770 (or (calc-var-value (nth 2 x
)) x
))
1771 (math-reject-arg x
)))
1773 (defun calcFunc-fitparam (x)
1774 (if (>= math-in-fit
2)
1776 (setq x
(aref math-dummy-vars
(+ math-fit-first-coef x -
1)))
1777 (or (calc-var-value (nth 2 x
)) x
))
1778 (math-reject-arg x
)))
1780 (defun calcFunc-fitdummy (x)
1781 (if (= math-in-fit
3)
1782 (nth x math-fit-new-coefs
)
1783 (math-reject-arg x
)))
1785 (defun calcFunc-hasfitvars (expr)
1786 (if (Math-primp expr
)
1788 (if (eq (car expr
) 'calcFunc-fitvar
)
1790 (apply 'max
(mapcar 'calcFunc-hasfitvars
(cdr expr
))))))
1792 (defun calcFunc-hasfitparams (expr)
1793 (if (Math-primp expr
)
1795 (if (eq (car expr
) 'calcFunc-fitparam
)
1797 (apply 'max
(mapcar 'calcFunc-hasfitparams
(cdr expr
))))))
1800 (defun math-all-vars-but (expr but
)
1801 (let* ((vars (math-all-vars-in expr
))
1804 (setq vars
(delq (assoc (car-safe p
) vars
) vars
)
1806 (sort (mapcar 'car vars
)
1807 (function (lambda (x y
) (string< (nth 1 x
) (nth 1 y
)))))))
1809 ;; The variables math-all-vars-vars (the vars for math-all-vars) and
1810 ;; math-all-vars-found are local to math-all-vars-in, but are used by
1811 ;; math-all-vars-rec which is called by math-all-vars-in.
1812 (defvar math-all-vars-vars
)
1813 (defvar math-all-vars-found
)
1815 (defun math-all-vars-in (expr)
1816 (let ((math-all-vars-vars nil
)
1817 math-all-vars-found
)
1818 (math-all-vars-rec expr
)
1819 math-all-vars-vars
))
1821 (defun math-all-vars-rec (expr)
1822 (if (Math-primp expr
)
1823 (if (eq (car-safe expr
) 'var
)
1824 (or (math-const-var expr
)
1825 (if (setq math-all-vars-found
(assoc expr math-all-vars-vars
))
1826 (setcdr math-all-vars-found
(1+ (cdr math-all-vars-found
)))
1827 (setq math-all-vars-vars
(cons (cons expr
1) math-all-vars-vars
)))))
1828 (while (setq expr
(cdr expr
))
1829 (math-all-vars-rec (car expr
)))))
1833 ;;; arch-tag: ff9f2920-8111-48b5-b3fa-b0682c3e44a6
1834 ;;; calcalg3.el ends here