diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-09-13 09:54:12 -0600 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-09-13 09:54:12 -0600 |
commit | 2e284b71500a1f8dc6cc46ecf21eb1e9389ea780 (patch) | |
tree | e9227f4ad4e9987dcc64055803ab3e70a5e801ce /cl/src/approx | |
parent | 2cb14ebf79dd43aa96d54e65a0841d195d07bdf9 (diff) | |
download | cmath-2e284b71500a1f8dc6cc46ecf21eb1e9389ea780.tar.gz cmath-2e284b71500a1f8dc6cc46ecf21eb1e9389ea780.zip |
new table macro, notes for 9/11
Diffstat (limited to 'cl/src/approx')
-rw-r--r-- | cl/src/approx/derivative.lisp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cl/src/approx/derivative.lisp b/cl/src/approx/derivative.lisp index 280463f..02fcb4c 100644 --- a/cl/src/approx/derivative.lisp +++ b/cl/src/approx/derivative.lisp @@ -5,4 +5,5 @@ (x1 (- x delta)) (y2 (apply f (list x2))) (y1 (apply f (list x1)))) - (/ (- y2 y1) (- x2 x1)))) + (/ (- y2 y1) + (- x2 x1)))) |