Inherits Eigen::Matrix< double, Eigen::Dynamic, Eigen::Dynamic, Eigen::ColMajor >, and RefCounter.
Libraries | |
| __neg__ | |
| Cols | |
| returns the number of cols | |
| CW | |
| returns an object providing cwise access | |
| Div | |
| modifies this matrix by the scalar matrix quotient A/s | |
| IsApprox | |
| returns true if other and this are approx. identical | |
| IsApproxToConstant | |
| returns true if array is constant and approx. equal s | |
| IsDiagonal | |
| returns true if array is a diagonal matrix by precision s | |
| IsIdentity | |
| returns true if array is the identity matrix by precision s | |
| IsLowerTriangular | |
| returns true if array is a lower triangular matrix by precision s | |
| IsScalar | |
| returns true if array is a scalar | |
| IsUnitary | |
| returns true if array is a unitary matrix by precision s (is an orthonormal basis) | |
| IsUpperTriangular | |
| returns true if array is an upper triangular matrix by precision s | |
| IsVector | |
| returns true if array is a vector | |
| IsZero | |
| returns true if array is a zero matrix by precision s | |
| Matrix | |
| constructs a matrix from a matrix block | |
| Mul | |
| modifies this matrix by the scalar matrix product A*s | |
| operator* | |
| returns the scalar matrix product A*s | |
| operator/ | |
| returns the scalar matrix quotient A/s | |
| operator< | |
| returns a matrix of 1 and 0 indicating which element is less than x | |
| Rows | |
| returns the number of rows | |
| Transpose | |
| returns the transpose | |
| TransposeInPlace | |
| transposes this matrix | |
A class that represents storage for dense linalg objects.
The storage scheme is column_major (FORTRAN).
Matrix is a template used by the following object classes:
...
[Library] |
returns unary minus (B=-A)
converts this matrix to a scalar (in case that it is a scalar)
The assignment operator for matrices (data only)
resizes the matrix to its new dimensions without destroying the contents. Internally it creates a copy of the object (nothing if memory is crucial).
find the largest element in the array returns the maximum element in the array
| row | will be modified and will contain the row position of the found value on return | |
| col | will be modified and will contain the column position of the found value on return |
find the smallest element in the array returns the minimum element in the array
| row | will be modified and will contain the row position of the found value on return | |
| col | will be modified and will contain the column position of the found value on return |
1.5.6