Avoid phrase "static allocation" for local storage on stack (bug #615).

(transplanted from 4e6d746514
)
This commit is contained in:
Jitse Niesen
2013-06-18 14:35:12 +01:00
parent c7ba7f59d6
commit 560877016a
2 changed files with 7 additions and 6 deletions

View File

@@ -55,7 +55,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: