aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/Reshaped.h
Commit message (Collapse)AuthorAge
* Change the logic of A.reshaped<Order>() to be a simple alias to ↵Gravatar Gael Guennebaud2018-10-03
| | | | | | A.reshaped<Order>(AutoSize,fix<1>). This means that now AutoOrder is allowed, and it always return a column-vector.
* Update reshaped API to use RowMajor/ColMajor directly as integral values ↵Gravatar Gael Guennebaud2018-09-19
| | | | | | instead of introducing RowOrder/ColOrder types. The API changed from A.respahed(rows,cols,RowOrder) to A.template reshaped<RowOrder>(rows,cols).
* Add support for RowOrder reshapedGravatar Gael Guennebaud2017-02-20
|
* Fallback Reshaped to MapBase when possible (same storage order and linear ↵Gravatar Gael Guennebaud2017-02-11
| | | | access to the nested expression)
* Use Eigen::fix<N> to pass compile-time sizes.Gravatar Gael Guennebaud2017-02-11
|
* Use fix<> API to specify compile-time reshaped sizes.Gravatar Gael Guennebaud2017-01-29