Mercurial > emacs
changeset 81746:71ae866366dc
(math-approx-ln-10,math-approx-ln-2): Add docstrings.
author | Jay Belanger <jay.p.belanger@gmail.com> |
---|---|
date | Sun, 08 Jul 2007 00:01:30 +0000 |
parents | 886906acf1e7 |
children | 673f9f66c0e9 |
files | lisp/calc/calc-math.el |
diffstat | 1 files changed, 4 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/calc/calc-math.el Sun Jul 08 00:01:06 2007 +0000 +++ b/lisp/calc/calc-math.el Sun Jul 08 00:01:30 2007 +0000 @@ -1720,14 +1720,16 @@ (defconst math-approx-ln-10 (eval-when-compile - (math-read-number-simple "2.302585092994045684018"))) + (math-read-number-simple "2.302585092994045684018")) + "An approximation for ln(10).") (math-defcache math-ln-10 math-approx-ln-10 (math-ln-raw-2 '(float 1 1))) (defconst math-approx-ln-2 (eval-when-compile - (math-read-number-simple "0.693147180559945309417"))) + (math-read-number-simple "0.693147180559945309417")) + "An approximation for ln(2).") (math-defcache math-ln-2 math-approx-ln-2 (math-ln-raw-3 (math-float '(frac 1 3))))