aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/QuickReference.dox
diff options
context:
space:
mode:
Diffstat (limited to 'doc/QuickReference.dox')
-rw-r--r--doc/QuickReference.dox2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/QuickReference.dox b/doc/QuickReference.dox
index a5f0dab56..5e0168649 100644
--- a/doc/QuickReference.dox
+++ b/doc/QuickReference.dox
@@ -45,7 +45,7 @@ All combinations are allowed: you can have a matrix with a fixed number of rows
Matrix<double, 6, Dynamic> // Dynamic number of columns (heap allocation)
Matrix<double, Dynamic, 2> // Dynamic number of rows (heap allocation)
Matrix<double, Dynamic, Dynamic, RowMajor> // Fully dynamic, row major (heap allocation)
-Matrix<double, 13, 3> // Fully fixed (static allocation)
+Matrix<double, 13, 3> // Fully fixed (usually allocated on stack)
\endcode
In most cases, you can simply use one of the convenience typedefs for \ref matrixtypedefs "matrices" and \ref arraytypedefs "arrays". Some examples: