summaryrefslogtreecommitdiff
path: root/lisp/calc/calc-math.el
diff options
context:
space:
mode:
authorJay Belanger <jay.p.belanger@gmail.com>2007-07-08 00:06:26 +0000
committerJay Belanger <jay.p.belanger@gmail.com>2007-07-08 00:06:26 +0000
commit94c95a358a8d92a90d48bac59d0f581280d670f0 (patch)
tree7eb32abb33c4e88a8142b93fdc1035eb0489f59c /lisp/calc/calc-math.el
parent3bf971143f247f7a9fe61390dbf1d23b1794c5f4 (diff)
downloademacs-94c95a358a8d92a90d48bac59d0f581280d670f0.tar.gz
(math-approx-ln-10,math-approx-ln-2): Add docstrings.
Diffstat (limited to 'lisp/calc/calc-math.el')
-rw-r--r--lisp/calc/calc-math.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/calc/calc-math.el b/lisp/calc/calc-math.el
index 6ee7a49feab..d8de812421f 100644
--- a/lisp/calc/calc-math.el
+++ b/lisp/calc/calc-math.el
@@ -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))))