|
NTPoly
|
A Class For Computing The Square Root of a Matrix. More...
#include <SquareRootSolvers.h>
Static Public Member Functions | |
| static void | SquareRoot (const Matrix_ps &InputMat, Matrix_ps &OutputMat, const SolverParameters &solver_parameters) |
| static void | DenseSquareRoot (const Matrix_ps &InputMat, Matrix_ps &OutputMat, const SolverParameters &solver_parameters) |
| static void | InverseSquareRoot (const Matrix_ps &InputMat, Matrix_ps &OutputMat, const SolverParameters &solver_parameters) |
| static void | DenseInverseSquareRoot (const Matrix_ps &InputMat, Matrix_ps &OutputMat, const SolverParameters &solver_parameters) |
Additional Inherited Members | |
Static Protected Member Functions inherited from NTPoly::SolverBase | |
| static const int * | GetIH (const Matrix_ps &dsm) |
| static int * | GetIH (Matrix_ps &dsm) |
| static const int * | GetIH (const SolverParameters &csp) |
| static int * | GetIH (SolverParameters &csp) |
A Class For Computing The Square Root of a Matrix.
|
static |
Compute the inverse square root of a matrix (dense version).
| InputMat | matrix to compute the inversesquareroot of. |
| OutputMat | = InputMat^-1/2. |
| solver_parameters | parameters for the solver |
|
static |
Compute the square root of a matrix (dense version).
| InputMat | matrix to compute the inversesquareroot of. |
| OutputMat | = InputMat^1/2. |
| solver_parameters | parameters for the solver |
|
static |
Compute the inverse square root of a matrix.
| InputMat | matrix to compute the inversesquareroot of. |
| OutputMat | = InputMat^-1/2. |
| solver_parameters | parameters for the solver |
|
static |
Compute the square root of a matrix.
| InputMat | matrix to compute the inversesquareroot of. |
| OutputMat | = InputMat^1/2. |
| solver_parameters | parameters for the solver |