SCIRun  5.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Namespaces | Functions
MatrixAlgorithms.h File Reference
#include <Core/Datatypes/MatrixFwd.h>
#include <Core/Datatypes/share.h>

Go to the source code of this file.

Namespaces

 SCIRun
 STL datatypes needed.
 
 SCIRun::MatrixAlgorithms
 

Functions

int cg_solve (const Matrix< double > &matrix, const ColumnMatrix &rhs, ColumnMatrix &lhs, double &err, int &niter, double max_error=1.e-6, int toomany=0, int useLhsAsGuess=0)
 
int cg_solve (const Matrix< double > &matrix, const ColumnMatrix &rhs, ColumnMatrix &lhs)
 
int cg_solve (const Matrix< double > &matrix, const DenseMatrix &rhs, DenseMatrix &lhs, double &err, int &niter, double max_error=1.e-6, int toomany=0, int useLhsAsGuess=0)
 
int cg_solve (const Matrix< double > &matrix, const DenseMatrix &rhs, DenseMatrix &lhs)
 
int bicg_solve (const Matrix< double > &matrix, const ColumnMatrix &rhs, ColumnMatrix &lhs, double &err, int &niter, double max_error=1.e-6, int toomany=0, int useLhsAsGuess=0)
 
int bicg_solve (const Matrix< double > &matrix, const ColumnMatrix &rhs, ColumnMatrix &lhs)
 
int bicg_solve (const Matrix< double > &matrix, const DenseMatrix &rhs, DenseMatrix &lhs, double &err, int &niter, double max_error=1.e-6, int toomany=0, int useLhsAsGuess=0)
 
int bicg_solve (const Matrix< double > &matrix, const DenseMatrix &rhs, DenseMatrix &lhs)
 
SCISHARE Transform matrix_to_transform (const Matrix< double > &matrix)