|
NTPoly
|
A Class For Computing Matrix functions based on Chebyshev polynomials. More...
#include <ChebyshevSolvers.h>
Public Member Functions | |
| ChebyshevPolynomial (int degree) | |
| void | SetCoefficient (int degree, double coefficient) |
| void | Compute (const DistributedSparseMatrix &InputMat, DistributedSparseMatrix &OutputMat, const FixedSolverParameters &solver_parameters) const |
| void | ComputeFactorized (const DistributedSparseMatrix &InputMat, DistributedSparseMatrix &OutputMat, const FixedSolverParameters &solver_parameters) const |
| ~ChebyshevPolynomial () | |
| Standard destructor. | |
Additional Inherited Members | |
Static Protected Member Functions inherited from NTPoly::SolverBase | |
| static const int * | GetIH (const DistributedSparseMatrix &dsm) |
| static int * | GetIH (DistributedSparseMatrix &dsm) |
| static const int * | GetIH (const IterativeSolverParameters &csp) |
| static int * | GetIH (IterativeSolverParameters &csp) |
| static const int * | GetIH (const FixedSolverParameters &csp) |
| static int * | GetIH (FixedSolverParameters &csp) |
A Class For Computing Matrix functions based on Chebyshev polynomials.
| NTPoly::ChebyshevPolynomial::ChebyshevPolynomial | ( | int | degree | ) |
Basic constructor.
| degree | of the polynomial. |
| void NTPoly::ChebyshevPolynomial::Compute | ( | const DistributedSparseMatrix & | InputMat, |
| DistributedSparseMatrix & | OutputMat, | ||
| const FixedSolverParameters & | solver_parameters | ||
| ) | const |
Compute A Matrix Chebyshev Polynomial.
| InputMat | input matrix. |
| OutputMat | = p(InputMat) |
| solver_parameters | parameters for the solver |
| void NTPoly::ChebyshevPolynomial::ComputeFactorized | ( | const DistributedSparseMatrix & | InputMat, |
| DistributedSparseMatrix & | OutputMat, | ||
| const FixedSolverParameters & | solver_parameters | ||
| ) | const |
Compute A Matrix Chebyshev Polynomial Recursively.
| InputMat | input matrix. |
| OutputMat | = p(InputMat) |
| solver_parameters | parameters for the solver |
| void NTPoly::ChebyshevPolynomial::SetCoefficient | ( | int | degree, |
| double | coefficient | ||
| ) |
Set a polynomial coefficient.
| degree | for which to set the coefficient. |
| coefficient | value. |
1.8.13