Generic matrix. More...
#include <GeneralMatrix.h>
Generic matrix.
Definition at line 22 of file GeneralMatrix.h.
Public Member Functions | |
| GeneralMatrix ()=default | |
| Base Constructor. | |
| virtual void | zero ()=0 |
| Zero the matrix elements. | |
| virtual void | mult (span< const double > b, span< double > prod) const =0 |
| Multiply A*b and write result to prod. | |
| virtual void | leftMult (span< const double > b, span< double > prod) const =0 |
| Multiply b*A and write result to prod. | |
| virtual void | factor ()=0 |
| Factors the A matrix, overwriting A. | |
| virtual int | factorQR () |
| Factors the A matrix using the QR algorithm, overwriting A. | |
| virtual double | rcondQR () |
| Returns an estimate of the inverse of the condition number for the matrix. | |
| virtual double | rcond (double a1norm)=0 |
| Returns an estimate of the inverse of the condition number for the matrix. | |
| virtual void | useFactorAlgorithm (int fAlgorithm) |
| Change the way the matrix is factored. | |
| virtual int | factorAlgorithm () const =0 |
| Return the factor algorithm used. | |
| virtual double | oneNorm () const =0 |
| Calculate the one norm of the matrix. | |
| virtual size_t | nRows () const =0 |
| Return the number of rows in the matrix. | |
| virtual void | clearFactorFlag () |
| clear the factored flag | |
| virtual void | solve (span< double > b, size_t nrhs=1, size_t ldb=0)=0 |
| Solves the Ax = b system returning x in the b spot. | |
| virtual bool | factored () const |
| true if the current factorization is up to date with the matrix | |
| virtual span< double > | col (size_t j) |
Return a writable span over column j. | |
| virtual span< const double > | col (size_t j) const |
Return a read-only span over column j. | |
| virtual double & | operator() (size_t i, size_t j)=0 |
| Index into the (i,j) element. | |
| virtual double | operator() (size_t i, size_t j) const =0 |
| Constant Index into the (i,j) element. | |
| virtual size_t | checkRows (double &valueSmall) const =0 |
| Check to see if we have any zero rows in the Jacobian. | |
| virtual size_t | checkColumns (double &valueSmall) const =0 |
| Check to see if we have any zero columns in the Jacobian. | |
Protected Attributes | |
| int | m_factored = false |
| Indicates whether the matrix is factored. | |
|
default |
Base Constructor.
|
pure virtual |
Zero the matrix elements.
Implemented in BandMatrix.
|
pure virtual |
Multiply A*b and write result to prod.
| b | Vector to do the rh multiplication |
| prod | OUTPUT vector to receive the result |
Implemented in BandMatrix.
|
pure virtual |
Multiply b*A and write result to prod.
| b | Vector to do the lh multiplication |
| prod | OUTPUT vector to receive the result |
Implemented in BandMatrix.
|
pure virtual |
Factors the A matrix, overwriting A.
We flip m_factored boolean to indicate that the matrix is now A-1.
Implemented in BandMatrix.
|
inlinevirtual |
Factors the A matrix using the QR algorithm, overwriting A.
we set m_factored to 2 to indicate the matrix is now QR factored
Definition at line 59 of file GeneralMatrix.h.
|
inlinevirtual |
Returns an estimate of the inverse of the condition number for the matrix.
The matrix must have been previously factored using the QR algorithm
Definition at line 69 of file GeneralMatrix.h.
|
pure virtual |
Returns an estimate of the inverse of the condition number for the matrix.
The matrix must have been previously factored using the LU algorithm
| a1norm | Norm of the matrix |
Implemented in BandMatrix.
|
inlinevirtual |
Change the way the matrix is factored.
| fAlgorithm | integer 0 LU factorization 1 QR factorization |
Definition at line 88 of file GeneralMatrix.h.
|
pure virtual |
Return the factor algorithm used.
Implemented in BandMatrix.
|
pure virtual |
Calculate the one norm of the matrix.
Implemented in BandMatrix.
|
pure virtual |
Return the number of rows in the matrix.
Implemented in BandMatrix.
|
inlinevirtual |
clear the factored flag
Definition at line 102 of file GeneralMatrix.h.
|
pure virtual |
Solves the Ax = b system returning x in the b spot.
| b | Vector for the RHS of the equation system |
| nrhs | Number of right-hand sides to solve, default 1 |
| ldb | Leading dimension of the right-hand side array. Defaults to nRows() |
Implemented in BandMatrix.
|
inlinevirtual |
true if the current factorization is up to date with the matrix
Definition at line 116 of file GeneralMatrix.h.
|
inlinevirtual |
Return a writable span over column j.
Definition at line 121 of file GeneralMatrix.h.
|
inlinevirtual |
Return a read-only span over column j.
Definition at line 126 of file GeneralMatrix.h.
|
pure virtual |
Index into the (i,j) element.
| i | row |
| j | column |
Implemented in BandMatrix.
|
pure virtual |
Constant Index into the (i,j) element.
| i | row |
| j | column |
Implemented in BandMatrix.
|
pure virtual |
Check to see if we have any zero rows in the Jacobian.
This utility routine checks to see if any rows are zero. The smallest row is returned along with the largest coefficient in that row
| valueSmall | OUTPUT value of the largest coefficient in the smallest row |
Implemented in BandMatrix.
|
pure virtual |
Check to see if we have any zero columns in the Jacobian.
This utility routine checks to see if any columns are zero. The smallest column is returned along with the largest coefficient in that column
| valueSmall | OUTPUT value of the largest coefficient in the smallest column |
Implemented in BandMatrix.
|
protected |
Indicates whether the matrix is factored.
0 for unfactored; Non-zero values indicate a particular factorization (LU=1, QR=2).
Definition at line 169 of file GeneralMatrix.h.