WPILibC++ 2024.3.2
Eigen::MatrixLogarithmReturnValue< Derived > Class Template Reference

Proxy for the matrix logarithm of some matrix (expression). More...

#include </home/runner/work/allwpilib/allwpilib/wpimath/src/main/native/thirdparty/eigen/include/unsupported/Eigen/src/MatrixFunctions/MatrixLogarithm.h>

Inheritance diagram for Eigen::MatrixLogarithmReturnValue< Derived >:

Public Types

typedef Derived::Scalar Scalar
 
typedef Derived::Index Index
 

Public Member Functions

 MatrixLogarithmReturnValue (const Derived &A)
 Constructor. More...
 
template<typename ResultType >
void evalTo (ResultType &result) const
 Compute the matrix logarithm. More...
 
Index rows () const
 
Index cols () const
 

Protected Types

typedef internal::ref_selector< Derived >::type DerivedNested
 

Detailed Description

template<typename Derived>
class Eigen::MatrixLogarithmReturnValue< Derived >

Proxy for the matrix logarithm of some matrix (expression).

Template Parameters
DerivedType of the argument to the matrix function.

This class holds the argument to the matrix function 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::log() and most of the time this is the only way it is used.

Member Typedef Documentation

◆ DerivedNested

template<typename Derived >
typedef internal::ref_selector<Derived>::type Eigen::MatrixLogarithmReturnValue< Derived >::DerivedNested
protected

◆ Index

template<typename Derived >
typedef Derived::Index Eigen::MatrixLogarithmReturnValue< Derived >::Index

◆ Scalar

template<typename Derived >
typedef Derived::Scalar Eigen::MatrixLogarithmReturnValue< Derived >::Scalar

Constructor & Destructor Documentation

◆ MatrixLogarithmReturnValue()

template<typename Derived >
Eigen::MatrixLogarithmReturnValue< Derived >::MatrixLogarithmReturnValue ( const Derived &  A)
inlineexplicit

Constructor.

Parameters
[in]AMatrix (expression) forming the argument of the matrix logarithm.

Member Function Documentation

◆ cols()

template<typename Derived >
Index Eigen::MatrixLogarithmReturnValue< Derived >::cols ( ) const
inline

◆ evalTo()

template<typename Derived >
template<typename ResultType >
void Eigen::MatrixLogarithmReturnValue< Derived >::evalTo ( ResultType &  result) const
inline

Compute the matrix logarithm.

Parameters
[out]resultLogarithm of A, where A is as specified in the constructor.

◆ rows()

template<typename Derived >
Index Eigen::MatrixLogarithmReturnValue< Derived >::rows ( ) const
inline

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