Public Member Functions | List of all members
MatrixFunction< MatrixType, 0 > Class Template Reference

Partial specialization of MatrixFunction for real matrices. More...

Public Member Functions

template<typename ResultType >
void compute (ResultType &result)
 Compute the matrix function. More...
 
 MatrixFunction (const MatrixType &A, StemFunction f)
 Constructor. More...
 

Detailed Description

template<typename MatrixType>
class Eigen::MatrixFunction< MatrixType, 0 >

Partial specialization of MatrixFunction for real matrices.

Constructor & Destructor Documentation

MatrixFunction ( const MatrixType &  A,
StemFunction  f 
)
inline

Constructor.

Parameters
[in]Aargument of matrix function, should be a square matrix.
[in]fan entire function; f(x,n) should compute the n-th derivative of f at x.

Member Function Documentation

void compute ( ResultType &  result)
inline

Compute the matrix function.

Parameters
[out]resultthe function f applied to A, as specified in the constructor.

This function converts the real matrix A to a complex matrix, uses MatrixFunction<MatrixType,1> and then converts the result back to a real matrix.


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