Proxy for the matrix square root of some matrix (expression). More...
#include <MatrixSquareRoot.h>
Public Member Functions | |
Index | cols () const |
template<typename ResultType > | |
void | evalTo (ResultType &result) const |
Compute the matrix square root. | |
MatrixSquareRootReturnValue (const Derived &src) | |
Constructor. | |
Index | rows () const |
Protected Attributes | |
const Derived & | m_src |
Private Types | |
typedef Derived::Index | Index |
Private Member Functions | |
MatrixSquareRootReturnValue & | operator= (const MatrixSquareRootReturnValue &) |
Proxy for the matrix square root of some matrix (expression).
Derived | Type of the argument to the matrix square root. |
This class holds the argument to the matrix square root until it is assigned or evaluated for some other reason (so the argument should not be changed in the meantime). It is the return type of MatrixBase::sqrt() and most of the time this is the only way it is used.
Definition at line 433 of file MatrixSquareRoot.h.
typedef Derived::Index Eigen::MatrixSquareRootReturnValue< Derived >::Index [private] |
Definition at line 436 of file MatrixSquareRoot.h.
Eigen::MatrixSquareRootReturnValue< Derived >::MatrixSquareRootReturnValue | ( | const Derived & | src | ) | [inline] |
Constructor.
[in] | src | Matrix (expression) forming the argument of the matrix square root. |
Definition at line 443 of file MatrixSquareRoot.h.
Index Eigen::MatrixSquareRootReturnValue< Derived >::cols | ( | void | ) | const [inline] |
Reimplemented from Eigen::ReturnByValue< MatrixSquareRootReturnValue< Derived > >.
Definition at line 459 of file MatrixSquareRoot.h.
void Eigen::MatrixSquareRootReturnValue< Derived >::evalTo | ( | ResultType & | result | ) | const [inline] |
Compute the matrix square root.
[out] | result | the matrix square root of src in the constructor. |
Definition at line 451 of file MatrixSquareRoot.h.
MatrixSquareRootReturnValue& Eigen::MatrixSquareRootReturnValue< Derived >::operator= | ( | const MatrixSquareRootReturnValue< Derived > & | ) | [private] |
Index Eigen::MatrixSquareRootReturnValue< Derived >::rows | ( | void | ) | const [inline] |
Reimplemented from Eigen::ReturnByValue< MatrixSquareRootReturnValue< Derived > >.
Definition at line 458 of file MatrixSquareRoot.h.
const Derived& Eigen::MatrixSquareRootReturnValue< Derived >::m_src [protected] |
Definition at line 462 of file MatrixSquareRoot.h.