diff --git a/src/documentation.html b/src/documentation.html
index 9767498..97393e6 100644
--- a/src/documentation.html
+++ b/src/documentation.html
@@ -98,6 +98,7 @@
largeArray | Don't prettyPrint Arrays larger than this
|
leq | Pointwise x<=y
|
linspace | Generate evenly spaced values
+ |
logspace | Generate logarithmically spaced values
|
log | Pointwise Math.log(x)
|
lshift | Pointwise x<<y
|
lshifteq | Pointwise x<<=y
@@ -397,6 +398,13 @@ Utility functions
OUT> [1,1.5,2,2.5,3]
+Or a vector of logarithmically spaced values between Math.pow(10,a) and Math.pow(10,b):
+
+
+IN> numeric.logspace(0,1,5);
+OUT> [1, 1.7782794100389228, 3.1622776601683795, 5.623413251903491, 10]
+
+
|