OSVR-Core
Public Member Functions | List of all members
Eigen::MatrixSquareRootQuasiTriangular< MatrixType > Class Template Reference

Class for computing matrix square roots of upper quasi-triangular matrices. More...

#include <MatrixSquareRoot.h>

Public Member Functions

 MatrixSquareRootQuasiTriangular (const MatrixType &A)
 Constructor. More...
 
template<typename ResultType >
void compute (ResultType &result)
 Compute the matrix square root. More...
 

Detailed Description

template<typename MatrixType>
class Eigen::MatrixSquareRootQuasiTriangular< MatrixType >

Class for computing matrix square roots of upper quasi-triangular matrices.

Template Parameters
MatrixTypetype of the argument of the matrix square root, expected to be an instantiation of the Matrix class template.

This class computes the square root of the upper quasi-triangular matrix stored in the upper Hessenberg part of the matrix passed to the constructor.

See also
MatrixSquareRoot, MatrixSquareRootTriangular

Constructor & Destructor Documentation

§ MatrixSquareRootQuasiTriangular()

template<typename MatrixType >
Eigen::MatrixSquareRootQuasiTriangular< MatrixType >::MatrixSquareRootQuasiTriangular ( const MatrixType A)
inline

Constructor.

Parameters
[in]Aupper quasi-triangular matrix whose square root is to be computed.

The class stores a reference to A, so it should not be changed (or destroyed) before compute() is called.

Member Function Documentation

§ compute()

template<typename MatrixType >
template<typename ResultType >
void Eigen::MatrixSquareRootQuasiTriangular< MatrixType >::compute ( ResultType &  result)

Compute the matrix square root.

Parameters
[out]resultsquare root of A, as specified in the constructor.

Only the upper Hessenberg part of result is updated, the rest is not touched. See MatrixBase::sqrt() for details on how this computation is implemented.


The documentation for this class was generated from the following file: