aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/AsciiQuickReference.txt
diff options
context:
space:
mode:
authorGravatar Mark Borgerding <mark@borgerding.net>2014-05-08 15:14:12 -0400
committerGravatar Mark Borgerding <mark@borgerding.net>2014-05-08 15:14:12 -0400
commitc794099e69353d82cfb0601c680d15e5848c7bc0 (patch)
treed04c5f9ed8765e31af00212b24f886ada2873da3 /doc/AsciiQuickReference.txt
parentaa524604b7ba36c164df3a47a6b6ef12952686b9 (diff)
fixed AsciiQuickReference typo: LinSpace -> LinSpaced
Diffstat (limited to 'doc/AsciiQuickReference.txt')
-rw-r--r--doc/AsciiQuickReference.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/AsciiQuickReference.txt b/doc/AsciiQuickReference.txt
index 4c8fe2f47..f62c112cd 100644
--- a/doc/AsciiQuickReference.txt
+++ b/doc/AsciiQuickReference.txt
@@ -41,8 +41,8 @@ MatrixXd::Ones(rows,cols) // ones(rows,cols)
C.setOnes(rows,cols) // C = ones(rows,cols)
MatrixXd::Random(rows,cols) // rand(rows,cols)*2-1 // MatrixXd::Random returns uniform random numbers in (-1, 1).
C.setRandom(rows,cols) // C = rand(rows,cols)*2-1
-VectorXd::LinSpace(size,low,high) // linspace(low,high,size)'
-v.setLinSpace(size,low,high) // v = linspace(low,high,size)'
+VectorXd::LinSpaced(size,low,high) // linspace(low,high,size)'
+v.setLinSpaced(size,low,high) // v = linspace(low,high,size)'
// Matrix slicing and blocks. All expressions listed here are read/write.