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 @@ largeArrayDon't prettyPrint Arrays larger than this leqPointwise x<=y linspaceGenerate evenly spaced values +logspaceGenerate logarithmically spaced values logPointwise Math.log(x) lshiftPointwise x<<y lshifteqPointwise 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]
+
+