diff options
| -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 @@ | |||
| 32 | (require 'calc-ext) | 32 | (require 'calc-ext) |
| 33 | (require 'calc-macs) | 33 | (require 'calc-macs) |
| 34 | 34 | ||
| 35 | ;; Declare functions which are defined elsewhere. | ||
| 36 | (declare-function calc-fit-s-shaped-logistic-curve "calc-nlfit" (arg)) | ||
| 37 | (declare-function calc-fit-bell-shaped-logistic-curve "calc-nlfit" (arg)) | ||
| 38 | (declare-function calc-fit-hubbert-linear-curve "calc-nlfit" (&optional sdv)) | ||
| 39 | (declare-function calc-graph-add-curve "calc-graph" (xdata ydata &optional zdata)) | ||
| 40 | (declare-function calc-graph-lookup "calc-graph" (thing)) | ||
| 41 | (declare-function calc-graph-set-styles "calc-graph" (lines points &optional yerr)) | ||
| 42 | (declare-function math-min-list "calc-arith" (a b)) | ||
| 43 | (declare-function math-max-list "calc-arith" (a b)) | ||
| 44 | |||
| 45 | |||
| 35 | (defun calc-find-root (var) | 46 | (defun calc-find-root (var) |
| 36 | (interactive "sVariable(s) to solve for: ") | 47 | (interactive "sVariable(s) to solve for: ") |
| 37 | (calc-slow-wrapper | 48 | (calc-slow-wrapper |