25 #ifndef UQ_GSL_MATRIX_H
26 #define UQ_GSL_MATRIX_H
32 #include <queso/Matrix.h>
33 #include <gsl/gsl_matrix.h>
34 #include <gsl/gsl_permutation.h>
35 #include <queso/GslVector.h>
101 double&
operator()(
unsigned int i,
unsigned int j);
105 const double&
operator()(
unsigned int i,
unsigned int j)
const;
126 unsigned int rank (
double absoluteZeroThreshold,
double relativeZeroThreshold)
const;
246 void cwSet (
double value);
249 void cwSet (
unsigned int rowId,
unsigned int colId,
const GslMatrix& mat);
256 void zeroLower (
bool includeDiagonal =
false);
261 void zeroUpper (
bool includeDiagonal =
false);
275 bool checkForExactNumRowsMatching,
276 bool checkForExactNumColsMatching);
281 const std::vector<const GslMatrix* >& matrices,
282 bool checkForExactNumRowsMatching,
283 bool checkForExactNumColsMatching);
288 const std::vector< GslMatrix* >& matrices,
289 bool checkForExactNumRowsMatching,
290 bool checkForExactNumColsMatching);
295 const std::vector<const GslMatrix* >& matrices,
296 bool checkForExactNumRowsMatching,
297 bool checkForExactNumColsMatching);
302 const std::vector< GslMatrix* >& matrices,
303 bool checkForExactNumRowsMatching,
304 bool checkForExactNumColsMatching);
309 const std::vector<const GslMatrix* >& matrices,
310 bool checkForExactNumRowsMatching,
311 bool checkForExactNumColsMatching);
316 const std::vector< GslMatrix* >& matrices,
317 bool checkForExactNumRowsMatching,
318 bool checkForExactNumColsMatching);
325 bool checkForExactNumRowsMatching,
326 bool checkForExactNumColsMatching);
333 bool checkForExactNumRowsMatching,
334 bool checkForExactNumColsMatching);
354 void print (std::ostream& os)
const;
358 const std::string& fileName,
359 const std::string& fileType,
360 const std::set<unsigned int>& allowedSubEnvIds)
const;
364 const std::string& fileType,
365 const std::set<unsigned int>& allowedSubEnvIds);
460 #endif // UQ_GSL_MATRIX_H
const GslMatrix & svdMatV() const
This function calls private member GslMatrix::internalSvd() to set a N-by-N orthogonal square matrix ...
void zeroUpper(bool includeDiagonal=false)
This function sets all the entries above the main diagonal of this matrix to zero.
GslMatrix operator*(double a, const GslMatrix &mat)
double m_determinant
The determinant of this matrix.
void subWriteContents(const std::string &varNamePrefix, const std::string &fileName, const std::string &fileType, const std::set< unsigned int > &allowedSubEnvIds) const
Write contents of subenvironment in file fileName.
GslMatrix & operator=(const GslMatrix &rhs)
Copies values from matrix rhs to this.
bool m_isSingular
Indicates whether or not this matrix is singular.
unsigned int numCols() const
Returns the column dimension of this matrix.
int m_signum
m_signum stores the sign of the permutation of the LU decomposition PA = LU.
GslVector invertMultiply(const GslVector &b) const
This function calculates the inverse of this matrix and multiplies it with vector b...
Class for matrix operations using GSL library.
GslMatrix & operator/=(double a)
Stores in this the coordinate-wise division of this by a.
void eigen(GslVector &eigenValues, GslMatrix *eigenVectors) const
This function computes the eigenvalues of a real symmetric matrix.
double determinant() const
Calculates the determinant of this matrix.
int svdSolve(const GslVector &rhsVec, GslVector &solVec) const
This function solves the system A x = b using the singular value decomposition (U, S, V) of A which must have been computed previously with GslMatrix::svd (x=solVec, b=rhsVec).
int svd(GslMatrix &matU, GslVector &vecS, GslMatrix &matVt) const
Checks for the dimension of this matrix, matU, VecS and matVt, and calls the protected routine intern...
GslMatrix leftDiagScaling(const GslVector &vec, const GslMatrix &mat)
double & operator()(unsigned int i, unsigned int j)
Element access method (non-const).
Class for matrix operations (virtual).
void mpiSum(const MpiComm &comm, GslMatrix &M_global) const
GslVector * m_svdSvec
m_svdSvec stores the diagonal of the N-by-N diagonal matrix of singular values S after the singular v...
GslMatrix & operator*=(double a)
Stores in this the coordinate-wise multiplication of this and a.
GslMatrix()
Default Constructor.
void setColumn(const unsigned int column_num, const GslVector &column)
This function copies vector column into the column_num-th column of this matrix.
void fillWithTranspose(unsigned int rowId, unsigned int colId, const GslMatrix &mat, bool checkForExactNumRowsMatching, bool checkForExactNumColsMatching)
This function stores the transpose of this matrix into this matrix.
gsl_matrix * m_mat
GSL matrix, also referred to as this matrix.
std::ostream & operator<<(std::ostream &os, const BaseEnvironment &obj)
GslMatrix operator+(const GslMatrix &m1, const GslMatrix &m2)
double max() const
Returns the maximum element value of the matrix.
The QUESO MPI Communicator Class.
gsl_permutation * m_permutation
The permutation matrix of a LU decomposition.
void cwExtract(unsigned int rowId, unsigned int colId, GslMatrix &mat) const
void smallestEigen(double &eigenValue, GslVector &eigenVector) const
This function finds smallest eigenvalue, namely eigenValue, of this matrix and its corresponding eige...
GslVector invertMultiplyForceLU(const GslVector &b) const
This function calculates the inverse of this matrix and multiplies it with vector b...
unsigned int numRowsGlobal() const
Returns the global row dimension of this matrix.
void zeroLower(bool includeDiagonal=false)
This function sets all the entries bellow the main diagonal of this matrix to zero.
unsigned int numRowsLocal() const
Returns the local row dimension of this matrix.
void fillWithBlocksVertically(unsigned int rowId, unsigned int colId, const std::vector< const GslMatrix * > &matrices, bool checkForExactNumRowsMatching, bool checkForExactNumColsMatching)
This function fills this matrix vertically with const block matrices.
void print(std::ostream &os) const
Print method. Defines the behavior of the ostream << operator inherited from the Object class...
gsl_matrix * data()
Returns this matrix.
double m_lnDeterminant
The natural logarithm of the determinant of this matrix.
Class for vector operations using GSL library.
GslMatrix inverse() const
This function calculated the inverse of this matrix (square).
GslMatrix rightDiagScaling(const GslMatrix &mat, const GslVector &vec)
GslMatrix & operator+=(const GslMatrix &rhs)
Stores in this the coordinate-wise addition of this and rhs.
void getRow(const unsigned int row_num, GslVector &row) const
This function gets the row_num-th column of this matrix and stores it into vector row...
GslVector multiply(const GslVector &x) const
This function multiplies this matrix by vector x and returns the resulting vector.
GslMatrix matrixProduct(const GslVector &v1, const GslVector &v2)
double lnDeterminant() const
Calculates the ln(determinant) of this matrix.
This (virtual) class sets up the environment underlying the use of the QUESO library by an executable...
int internalSvd() const
This function factorizes the M-by-N matrix A into the singular value decomposition A = U S V^T for M ...
void fillWithTensorProduct(unsigned int rowId, unsigned int colId, const GslMatrix &mat1, const GslMatrix &mat2, bool checkForExactNumRowsMatching, bool checkForExactNumColsMatching)
This function calculates the tensor product of matrices mat1 and mat2 and stores it in this matrix...
GslMatrix * m_svdVmat
m_svdVmat stores the N-by-N orthogonal square matrix V after the singular value decomposition of a ma...
void matlabLinearInterpExtrap(const GslVector &x1Vec, const GslMatrix &y1Mat, const GslVector &x2Vec)
GslMatrix * m_svdUmat
m_svdUmat stores the M-by-N orthogonal matrix U after the singular value decomposition of a matrix...
const BaseEnvironment & env() const
void copy(const GslMatrix &src)
In this function this matrix receives a copy of matrix src.
void resetLU()
In this function resets the LU decomposition of this matrix, as well as deletes the private member po...
unsigned int rank(double absoluteZeroThreshold, double relativeZeroThreshold) const
This function returns the number of singular values of this matrix (rank).
void getColumn(const unsigned int column_num, GslVector &column) const
This function gets the column_num-th column of this matrix and stores it into vector column...
gsl_matrix * m_LU
GSL matrix for the LU decomposition of m_mat.
GslMatrix * m_svdVTmat
m_svdVmatT stores the transpose of N-by-N orthogonal square matrix V, namely V^T, after the singular ...
void filterLargeValues(double thresholdValue)
This function sets to zero (filters) all entries of this matrix which are greater than thresholdValue...
void largestEigen(double &eigenValue, GslVector &eigenVector) const
This function finds largest eigenvalue, namely eigenValue, of this matrix and its corresponding eigen...
GslMatrix operator-(const GslMatrix &m1, const GslMatrix &m2)
GslMatrix * m_inverse
Inverse matrix of this.
A class for partitioning vectors and matrices.
GslMatrix transpose() const
This function calculated the transpose of this matrix (square).
void cwSet(double value)
Component-wise set all values to this with value.
int chol()
Computes Cholesky factorization of a real symmetric positive definite matrix this.
double normMax() const
Returns the Frobenius norm of this matrix.
void fillWithBlocksDiagonally(unsigned int rowId, unsigned int colId, const std::vector< const GslMatrix * > &matrices, bool checkForExactNumRowsMatching, bool checkForExactNumColsMatching)
This function fills this matrix diagonally with const block matrices.
const GslMatrix & svdMatU() const
This function calls private member GslMatrix::internalSvd() to set a M-by-N orthogonal matrix U of th...
double normFrob() const
Returns the Frobenius norm of this matrix.
void setRow(const unsigned int row_num, const GslVector &row)
This function copies vector row into the row_num-th column of this matrix.
void subReadContents(const std::string &fileName, const std::string &fileType, const std::set< unsigned int > &allowedSubEnvIds)
Read contents of subenvironment from file fileName.
GslMatrix & operator-=(const GslMatrix &rhs)
Stores in this the coordinate-wise subtraction of this by rhs.
void filterSmallValues(double thresholdValue)
This function sets to zero (filters) all entries of this matrix which are smaller than thresholdValue...
void fillWithBlocksHorizontally(unsigned int rowId, unsigned int colId, const std::vector< const GslMatrix * > &matrices, bool checkForExactNumRowsMatching, bool checkForExactNumColsMatching)
This function fills this matrix horizontally with const block matrices.
Map * m_svdColMap
Mapping for matrices involved in the singular value decomposition (svd) routine.