diff options
author | Jay Belanger <jay.p.belanger@gmail.com> | 2007-11-27 04:01:42 +0000 |
---|---|---|
committer | Jay Belanger <jay.p.belanger@gmail.com> | 2007-11-27 04:01:42 +0000 |
commit | 05fed923d3960dddbdbf3385232101e5ba95451c (patch) | |
tree | 7fa55ebf2cd584886d85a7a1d1132004e6dd5e8d /lisp/calc | |
parent | 1dee844f0c6f8ba2da39a95e17e8083e1441c907 (diff) | |
download | emacs-05fed923d3960dddbdbf3385232101e5ba95451c.tar.gz emacs-05fed923d3960dddbdbf3385232101e5ba95451c.tar.bz2 emacs-05fed923d3960dddbdbf3385232101e5ba95451c.zip |
(calc-fit-s-shaped-logistic-curve)
(calc-fit-bell-shaped-logistic-curve)
(calc-fit-hubbert-linear-curve, calc-graph-add-curve)
(calc-graph-lookup, calc-graph-set-styles, math-min-list)
(math-max-list): Declare as functions.
Diffstat (limited to 'lisp/calc')
-rw-r--r-- | lisp/calc/calcalg3.el | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lisp/calc/calcalg3.el b/lisp/calc/calcalg3.el index 5aa410be19e..5d129b37f7a 100644 --- a/lisp/calc/calcalg3.el +++ b/lisp/calc/calcalg3.el @@ -32,6 +32,17 @@ (require 'calc-ext) (require 'calc-macs) +;; Declare functions which are defined elsewhere. +(declare-function calc-fit-s-shaped-logistic-curve "calc-nlfit" (arg)) +(declare-function calc-fit-bell-shaped-logistic-curve "calc-nlfit" (arg)) +(declare-function calc-fit-hubbert-linear-curve "calc-nlfit" (&optional sdv)) +(declare-function calc-graph-add-curve "calc-graph" (xdata ydata &optional zdata)) +(declare-function calc-graph-lookup "calc-graph" (thing)) +(declare-function calc-graph-set-styles "calc-graph" (lines points &optional yerr)) +(declare-function math-min-list "calc-arith" (a b)) +(declare-function math-max-list "calc-arith" (a b)) + + (defun calc-find-root (var) (interactive "sVariable(s) to solve for: ") (calc-slow-wrapper |