aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/util/ReshapedHelper.h
Commit message (Collapse)AuthorAge
* Fix code formatGravatar Eugene Zhulenev2018-11-02
|
* Workaround nbcc+msvc compiler bugGravatar Eugene Zhulenev2018-11-02
|
* 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).
* Fix linking issue.Gravatar Gael Guennebaud2017-02-21
|
* Add support for automatic-size deduction in reshaped, e.g.:Gravatar Gael Guennebaud2017-02-21
mat.reshaped(4,AutoSize); <-> mat.reshaped(4,mat.size()/4);