Lines Matching full:matrix
51 \section Corners Matrix Corners
56 matrix.corner(TopLeft,r,c)
57 matrix.corner(TopRight,r,c)
58 matrix.corner(BottomLeft,r,c)
59 matrix.corner(BottomRight,r,c)
60 matrix.corner<r,c>(TopLeft)
61 matrix.corner<r,c>(TopRight)
62 matrix.corner<r,c>(BottomLeft)
63 matrix.corner<r,c>(BottomRight)
65 matrix.topLeftCorner(r,c)
66 matrix.topRightCorner(r,c)
67 matrix.bottomLeftCorner(r,c)
68 matrix.bottomRightCorner(r,c)
69 matrix.topLeftCorner<r,c>()
70 matrix.topRightCorner<r,c>()
71 matrix.bottomLeftCorner<r,c>()
72 matrix.bottomRightCorner<r,c>()
84 In Eigen3 this .cwise() prefix has been superseded by a new kind of matrix type called
85 Array for which all operations are performed coefficient wise. You can easily view a matrix as an array and vice versa using
86 the MatrixBase::array() and ArrayBase::matrix() functions respectively. Here is an example:
165 \section Decompositions Matrix decompositions
167 Some of Eigen 2's matrix decompositions have been renamed in Eigen 3, while some others have been removed and are replaced by other decompositions in Eigen 3.
251 In Eigen all operations are performed in a lazy fashion except the matrix products which are always evaluated into a temporary by default.