#include <DenseLinAlgPack_DMatrixClass.hpp>
[NOHEADER] | |
| DMatrix () | |
| Construct a matrix with rows = cols = 0. | |
| DMatrix (size_type rows, size_type cols) | |
| Construct an uninitialied rectangular matrix (rows x cols). | |
| DMatrix (value_type val, size_type rows, size_type cols) | |
| | |
| DMatrix (const DMatrixSlice &gms) | |
| | |
[NOHEADER] | |
| void | resize (size_type rows, size_type cols, value_type val=value_type()) |
| Resize matrix to a (rows x cols) matrix and initializes any added elements by val. | |
| void | free () |
| frees memory and leaves a (0 x 0) matrix | |
| size_type | rows () const |
| Return the number of rows. | |
| size_type | cols () const |
| Return the number of columns. | |
[NOHEADER] | |
| reference | operator() (size_type i, size_type j) |
| Return element at row i, col j (i,j) (1-based). | |
| const_reference | operator() (size_type i, size_type j) const |
| Return element at row i, col j (i,j) (1-based). | |
[NOHEADER] | |
| DVectorSlice | row (size_type i) |
| Return DVectorSlice object representing the ith row (1-based; 1,2,..,#this->rows()#). | |
| const DVectorSlice | row (size_type i) const |
| | |
| DVectorSlice | col (size_type j) |
| Return DVectorSlice object representing the jth column (1-based; 1,2,..,#this->cols()#). | |
| const DVectorSlice | col (size_type j) const |
| | |
| const DVectorSlice | diag (difference_type k=0) const |
| | |
| const DMatrixSlice | operator() (const Range1D &I, const Range1D &J) const |
| | |
| const DMatrixSlice | operator() (size_type i1, size_type i2, size_type j1, size_type j2) const |
| | |
| DMatrixSlice | operator() () |
| Return a DMatrixSlice that represents this entire matrix. | |
| const DMatrixSlice | operator() () const |
| | |
[NOHEADER] | |
| operator DMatrixSlice () | |
| | |
| operator const DMatrixSlice () const | |
| | |
[NOHEADER] | |
| DMatrix & | operator= (value_type rhs) |
| | |
| DMatrix & | operator= (const DMatrixSlice &gms_rhs) |
| | |
| DMatrix & | operator= (const DMatrix &rhs) |
| Same as above. Needed to override the default assignment operator. | |
[NOHEADER] | |
| size_type | max_rows () const |
| Return the number of rows in the full matrix. Equivalent to BLAS LDA argument. | |
| value_type * | col_ptr (size_type j) |
| | |
| const value_type * | col_ptr (size_type j) const |
| Same as above. | |
Definition at line 359 of file DenseLinAlgPack_DMatrixClass.hpp.
|
|
Construct a matrix with rows = cols = 0.
Definition at line 964 of file DenseLinAlgPack_DMatrixClass.hpp. |
|
||||||||||||
|
Construct an uninitialied rectangular matrix (rows x cols).
Definition at line 968 of file DenseLinAlgPack_DMatrixClass.hpp. |
|
||||||||||||||||
|
Definition at line 973 of file DenseLinAlgPack_DMatrixClass.hpp. |
|
|
Definition at line 988 of file DenseLinAlgPack_DMatrixClass.hpp. |
|
||||||||||||||||
|
Resize matrix to a (rows x cols) matrix and initializes any added elements by val.
Definition at line 997 of file DenseLinAlgPack_DMatrixClass.hpp. |
|
|
frees memory and leaves a (0 x 0) matrix
Definition at line 1005 of file DenseLinAlgPack_DMatrixClass.hpp. |
|
|
Return the number of rows.
Definition at line 1013 of file DenseLinAlgPack_DMatrixClass.hpp. |
|
|
Return the number of columns.
Definition at line 1018 of file DenseLinAlgPack_DMatrixClass.hpp. |
|
||||||||||||
|
Return element at row i, col j (i,j) (1-based).
Definition at line 1025 of file DenseLinAlgPack_DMatrixClass.hpp. |
|
||||||||||||
|
Return element at row i, col j (i,j) (1-based).
Definition at line 1032 of file DenseLinAlgPack_DMatrixClass.hpp. |
|
|
Return DVectorSlice object representing the ith row (1-based; 1,2,..,#this->rows()#).
Definition at line 1041 of file DenseLinAlgPack_DMatrixClass.hpp. |
|
|
Definition at line 1048 of file DenseLinAlgPack_DMatrixClass.hpp. |
|
|
Return DVectorSlice object representing the jth column (1-based; 1,2,..,#this->cols()#).
Definition at line 1055 of file DenseLinAlgPack_DMatrixClass.hpp. |
|
|
Definition at line 1062 of file DenseLinAlgPack_DMatrixClass.hpp. |
|
|
Definition at line 1075 of file DenseLinAlgPack_DMatrixClass.hpp. |
|
||||||||||||
|
Definition at line 1089 of file DenseLinAlgPack_DMatrixClass.hpp. |
|
||||||||||||||||||||
|
Definition at line 1105 of file DenseLinAlgPack_DMatrixClass.hpp. |
|
|
Return a DMatrixSlice that represents this entire matrix.
Definition at line 1113 of file DenseLinAlgPack_DMatrixClass.hpp. |
|
|
Definition at line 1119 of file DenseLinAlgPack_DMatrixClass.hpp. |
|
|
Definition at line 1128 of file DenseLinAlgPack_DMatrixClass.hpp. |
|
|
Definition at line 1133 of file DenseLinAlgPack_DMatrixClass.hpp. |
|
|
Definition at line 1141 of file DenseLinAlgPack_DMatrixClass.hpp. |
|
|
Definition at line 1155 of file DenseLinAlgPack_DMatrixClass.hpp. |
|
|
Same as above. Needed to override the default assignment operator.
Definition at line 1148 of file DenseLinAlgPack_DMatrixClass.hpp. |
|
|
Return the number of rows in the full matrix. Equivalent to BLAS LDA argument.
Definition at line 1164 of file DenseLinAlgPack_DMatrixClass.hpp. |
|
|
Definition at line 1168 of file DenseLinAlgPack_DMatrixClass.hpp. |
|
|
Same as above.
Definition at line 1180 of file DenseLinAlgPack_DMatrixClass.hpp. |
1.3.9.1