Home | History | Annotate | Download | only in doc

Lines Matching full:matrix

7 Matrix<double, 3, 3> A;               // Fixed rows and cols. Same as Matrix3d.
8 Matrix<double, 3, Dynamic> B; // Fixed rows, dynamic cols.
9 Matrix<double, Dynamic, Dynamic> C; // Full dynamic. Same as MatrixXd.
10 Matrix<double, 3, 3, RowMajor> E; // Row major; default is column-major.
11 Matrix3f P, Q, R; // 3x3 float matrix.
12 Vector3f x, y, z; // 3x1 float matrix.
13 RowVector3f a, b, c; // 1x3 float matrix.
38 // Matrix slicing and blocks. All expressions listed here are read/write.
72 // Matrix-vector. Matrix-matrix. Matrix-scalar.