WPILibC++ 2023.4.3-108-ge5452e3
|
This module aims to provide various methods for the computation of matrix functions. More...
Classes | |
struct | Eigen::internal::matrix_function_compute< MatrixType, IsComplex > |
Class for computing matrix functions. More... | |
class | Eigen::MatrixFunctionReturnValue< Derived > |
Proxy for the matrix function of some matrix (expression). More... | |
struct | Eigen::internal::matrix_sqrt_compute< MatrixType, IsComplex > |
Helper struct for computing matrix square roots of general matrices. More... | |
class | Eigen::MatrixSquareRootReturnValue< Derived > |
Proxy for the matrix square root of some matrix (expression). More... | |
class | Eigen::MatrixLogarithmReturnValue< Derived > |
Proxy for the matrix logarithm of some matrix (expression). More... | |
class | Eigen::MatrixPowerParenthesesReturnValue< MatrixType > |
Proxy for the matrix power of some matrix. More... | |
class | Eigen::MatrixPowerAtomic< MatrixType > |
Class for computing matrix powers. More... | |
class | Eigen::MatrixPower< MatrixType > |
Class for computing matrix powers. More... | |
class | Eigen::MatrixPowerReturnValue< Derived > |
Proxy for the matrix power of some matrix (expression). More... | |
class | Eigen::MatrixComplexPowerReturnValue< Derived > |
Proxy for the matrix power of some matrix (expression). More... | |
struct | Eigen::MatrixExponentialReturnValue< Derived > |
Proxy for the matrix exponential of some matrix (expression). More... | |
class | Eigen::internal::MatrixFunctionAtomic< MatrixType > |
Helper class for computing matrix functions of atomic matrices. More... | |
class | Eigen::internal::MatrixLogarithmAtomic< MatrixType > |
Helper class for computing matrix logarithm of atomic matrices. More... | |
Functions | |
template<typename MatrixType , typename ResultType > | |
void | Eigen::matrix_sqrt_quasi_triangular (const MatrixType &arg, ResultType &result) |
Compute matrix square root of quasi-triangular matrix. More... | |
template<typename MatrixType , typename ResultType > | |
void | Eigen::matrix_sqrt_triangular (const MatrixType &arg, ResultType &result) |
Compute matrix square root of triangular matrix. More... | |
This module aims to provide various methods for the computation of matrix functions.
To use this module, add
at the start of your source file.
This module defines the following MatrixBase methods.
These methods are the main entry points to this module.
Matrix functions are defined as follows. Suppose that \( f \) is an entire function (that is, a function on the complex plane that is everywhere complex differentiable). Then its Taylor series
\[ f(0) + f'(0) x + \frac{f''(0)}{2} x^2 + \frac{f'''(0)}{3!} x^3 + \cdots \]
converges to \( f(x) \). In this case, we can define the matrix function by the same series:
\[ f(M) = f(0) + f'(0) M + \frac{f''(0)}{2} M^2 + \frac{f'''(0)}{3!} M^3 + \cdots \]
The remainder of the page documents the following MatrixBase methods which are defined in the MatrixFunctions module.
Compute the matrix cosine.
[in] | M | a square matrix. |
This function computes the matrix cosine. Use ArrayBase::cos() for computing the entry-wise cosine.
The implementation calls matrixFunction() with StdStemFunctions::cos().
Compute the matrix hyberbolic cosine.
[in] | M | a square matrix. |
This function calls matrixFunction() with StdStemFunctions::cosh().
Compute the matrix exponential.
[in] | M | matrix whose exponential is to be computed. |
M
.The matrix exponential of \( M \) is defined by
\[ \exp(M) = \sum_{k=0}^\infty \frac{M^k}{k!}. \]
The matrix exponential can be used to solve linear ordinary differential equations: the solution of \( y' = My \) with the initial condition \( y(0) = y_0 \) is given by \( y(t) = \exp(M) y_0 \).
The matrix exponential is different from applying the exp function to all the entries in the matrix. Use ArrayBase::exp() if you want to do the latter.
The cost of the computation is approximately \( 20 n^3 \) for matrices of size \( n \). The number 20 depends weakly on the norm of the matrix.
The matrix exponential is computed using the scaling-and-squaring method combined with Padé approximation. The matrix is first rescaled, then the exponential of the reduced matrix is computed approximant, and then the rescaling is undone by repeated squaring. The degree of the Padé approximant is chosen such that the approximation error is less than the round-off error. However, errors may accumulate during the squaring phase.
Details of the algorithm can be found in: Nicholas J. Higham, "The scaling and squaring method for the matrix exponential revisited," SIAM J. Matrix Anal. Applic., 26:1179–1193, 2005.
Example: The following program checks that
\[ \exp \left[ \begin{array}{ccc} 0 & \frac14\pi & 0 \\ -\frac14\pi & 0 & 0 \\ 0 & 0 & 0 \end{array} \right] = \left[ \begin{array}{ccc} \frac12\sqrt2 & -\frac12\sqrt2 & 0 \\ \frac12\sqrt2 & \frac12\sqrt2 & 0 \\ 0 & 0 & 1 \end{array} \right]. \]
This corresponds to a rotation of \( \frac14\pi \) radians around the z-axis.
Output:
M
has to be a matrix of float
, double
, long double
complex<float>
, complex<double>
, or complex<long double>
.Compute the matrix logarithm.
[in] | M | invertible matrix whose logarithm is to be computed. |
M
.The matrix logarithm of \( M \) is a matrix \( X \) such that \( \exp(X) = M \) where exp denotes the matrix exponential. As for the scalar logarithm, the equation \( \exp(X) = M \) may have multiple solutions; this function returns a matrix whose eigenvalues have imaginary part in the interval \( (-\pi,\pi] \).
The matrix logarithm is different from applying the log function to all the entries in the matrix. Use ArrayBase::log() if you want to do the latter.
In the real case, the matrix \( M \) should be invertible and it should have no eigenvalues which are real and negative (pairs of complex conjugate eigenvalues are allowed). In the complex case, it only needs to be invertible.
This function computes the matrix logarithm using the Schur-Parlett algorithm as implemented by MatrixBase::matrixFunction(). The logarithm of an atomic block is computed by MatrixLogarithmAtomic, which uses direct computation for 1-by-1 and 2-by-2 blocks and an inverse scaling-and-squaring algorithm for bigger blocks, with the square roots computed by MatrixBase::sqrt().
Details of the algorithm can be found in Section 11.6.2 of: Nicholas J. Higham, Functions of Matrices: Theory and Computation, SIAM 2008. ISBN 978-0-898716-46-7.
Example: The following program checks that
\[ \log \left[ \begin{array}{ccc} \frac12\sqrt2 & -\frac12\sqrt2 & 0 \\ \frac12\sqrt2 & \frac12\sqrt2 & 0 \\ 0 & 0 & 1 \end{array} \right] = \left[ \begin{array}{ccc} 0 & \frac14\pi & 0 \\ -\frac14\pi & 0 & 0 \\ 0 & 0 & 0 \end{array} \right]. \]
This corresponds to a rotation of \( \frac14\pi \) radians around the z-axis. This is the inverse of the example used in the documentation of exp().
Output:
M
has to be a matrix of float
, double
, long double
, complex<float>
, complex<double>
, or complex<long double>
.Compute the matrix raised to arbitrary real power.
[in] | M | base of the matrix power, should be a square matrix. |
[in] | p | exponent of the matrix power. |
The matrix power \( M^p \) is defined as \( \exp(p \log(M)) \), where exp denotes the matrix exponential, and log denotes the matrix logarithm. This is different from raising all the entries in the matrix to the p-th power. Use ArrayBase::pow() if you want to do the latter.
If p
is complex, the scalar type of M
should be the type of p
. \( M^p \) simply evaluates into \( \exp(p \log(M)) \). Therefore, the matrix \( M \) should meet the conditions to be an argument of matrix logarithm.
If p
is real, it is casted into the real scalar type of M
. Then this function computes the matrix power using the Schur-Padé algorithm as implemented by class MatrixPower. The exponent is split into integral part and fractional part, where the fractional part is in the interval \( (-1, 1) \). The main diagonal and the first super-diagonal is directly computed.
If M
is singular with a semisimple zero eigenvalue and p
is positive, the Schur factor \( T \) is reordered with Givens rotations, i.e.
\[ T = \left[ \begin{array}{cc} T_1 & T_2 \\ 0 & 0 \end{array} \right] \]
where \( T_1 \) is invertible. Then \( T^p \) is given by
\[ T^p = \left[ \begin{array}{cc} T_1^p & T_1^{-1} T_1^p T_2 \\ 0 & 0 \end{array}. \right] \]
Details of the algorithm can be found in: Nicholas J. Higham and Lijing Lin, "A Schur-Padé algorithm for fractional powers of a matrix," SIAM J. Matrix Anal. Applic., 32(3):1056–1078, 2011.
Example: The following program checks that
\[ \left[ \begin{array}{ccc} \cos1 & -\sin1 & 0 \\ \sin1 & \cos1 & 0 \\ 0 & 0 & 1 \end{array} \right]^{\frac14\pi} = \left[ \begin{array}{ccc} \frac12\sqrt2 & -\frac12\sqrt2 & 0 \\ \frac12\sqrt2 & \frac12\sqrt2 & 0 \\ 0 & 0 & 1 \end{array} \right]. \]
This corresponds to \( \frac14\pi \) rotations of 1 radian around the z-axis.
Output:
MatrixBase::pow() is user-friendly. However, there are some circumstances under which you should use class MatrixPower directly. MatrixPower can save the result of Schur decomposition, so it's better for computing various powers for the same matrix.
Example:
Output:
M
has to be a matrix of float
, double
, long double
, complex<float>
, complex<double>
, or complex<long double>
.Compute a matrix function.
[in] | M | argument of matrix function, should be a square matrix. |
[in] | f | an entire function; f(x,n) should compute the n-th derivative of f at x. |
f
applied to M
.Suppose that M
is a matrix whose entries have type Scalar
. Then, the second argument, f
, should be a function with prototype
where ComplexScalar
= std::complex<Scalar>
if Scalar
is real (e.g., float
or double
) and ComplexScalar
= Scalar
if Scalar
is complex. The return value of f(x,n)
should be \( f^{(n)}(x) \), the n-th derivative of f at x.
This routine uses the algorithm described in: Philip Davies and Nicholas J. Higham, "A Schur-Parlett algorithm for computing matrix functions", SIAM J. Matrix Anal. Applic., 25:464–485, 2003.
The actual work is done by the MatrixFunction class.
Example: The following program checks that
\[ \exp \left[ \begin{array}{ccc} 0 & \frac14\pi & 0 \\ -\frac14\pi & 0 & 0 \\ 0 & 0 & 0 \end{array} \right] = \left[ \begin{array}{ccc} \frac12\sqrt2 & -\frac12\sqrt2 & 0 \\ \frac12\sqrt2 & \frac12\sqrt2 & 0 \\ 0 & 0 & 1 \end{array} \right]. \]
This corresponds to a rotation of \( \frac14\pi \) radians around the z-axis. This is the same example as used in the documentation of exp().
Output:
Note that the function expfn
is defined for complex numbers x
, even though the matrix A
is over the reals. Instead of expfn
, we could also have used StdStemFunctions::exp:
Compute the matrix sine.
[in] | M | a square matrix. |
This function computes the matrix sine. Use ArrayBase::sin() for computing the entry-wise sine.
The implementation calls matrixFunction() with StdStemFunctions::sin().
Example:
Output:
Compute the matrix hyperbolic sine.
[in] | M | a square matrix. |
This function calls matrixFunction() with StdStemFunctions::sinh().
Example:
Output:
Compute the matrix square root.
[in] | M | invertible matrix whose square root is to be computed. |
M
.The matrix square root of \( M \) is the matrix \( M^{1/2} \) whose square is the original matrix; so if \( S = M^{1/2} \) then \( S^2 = M \). This is different from taking the square root of all the entries in the matrix; use ArrayBase::sqrt() if you want to do the latter.
In the real case, the matrix \( M \) should be invertible and it should have no eigenvalues which are real and negative (pairs of complex conjugate eigenvalues are allowed). In that case, the matrix has a square root which is also real, and this is the square root computed by this function.
The matrix square root is computed by first reducing the matrix to quasi-triangular form with the real Schur decomposition. The square root of the quasi-triangular matrix can then be computed directly. The cost is approximately \( 25 n^3 \) real flops for the real Schur decomposition and \( 3\frac13 n^3 \) real flops for the remainder (though the computation time in practice is likely more than this indicates).
Details of the algorithm can be found in: Nicholas J. Highan, "Computing real square roots of a real matrix", Linear Algebra Appl., 88/89:405–430, 1987.
If the matrix is positive-definite symmetric, then the square root is also positive-definite symmetric. In this case, it is best to use SelfAdjointEigenSolver::operatorSqrt() to compute it.
In the complex case, the matrix \( M \) should be invertible; this is a restriction of the algorithm. The square root computed by this algorithm is the one whose eigenvalues have an argument in the interval \( (-\frac12\pi, \frac12\pi] \). This is the usual branch cut.
The computation is the same as in the real case, except that the complex Schur decomposition is used to reduce the matrix to a triangular matrix. The theoretical cost is the same. Details are in: Åke Björck and Sven Hammarling, "A Schur method for the square root of a matrix", Linear Algebra Appl., 52/53:127–140, 1983.
Example: The following program checks that the square root of
\[ \left[ \begin{array}{cc} \cos(\frac13\pi) & -\sin(\frac13\pi) \\ \sin(\frac13\pi) & \cos(\frac13\pi) \end{array} \right], \]
corresponding to a rotation over 60 degrees, is a rotation over 30 degrees:
\[ \left[ \begin{array}{cc} \cos(\frac16\pi) & -\sin(\frac16\pi) \\ \sin(\frac16\pi) & \cos(\frac16\pi) \end{array} \right]. \]
Output:
void Eigen::matrix_sqrt_quasi_triangular | ( | const MatrixType & | arg, |
ResultType & | result | ||
) |
Compute matrix square root of quasi-triangular matrix.
MatrixType | type of arg , the argument of matrix square root, expected to be an instantiation of the Matrix class template. |
ResultType | type of result , where result is to be stored. |
[in] | arg | argument of matrix square root. |
[out] | result | matrix square root of upper Hessenberg part of arg . |
This function computes the square root of the upper quasi-triangular matrix stored in the upper Hessenberg part of arg
. 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.
void Eigen::matrix_sqrt_triangular | ( | const MatrixType & | arg, |
ResultType & | result | ||
) |
Compute matrix square root of triangular matrix.
MatrixType | type of arg , the argument of matrix square root, expected to be an instantiation of the Matrix class template. |
ResultType | type of result , where result is to be stored. |
[in] | arg | argument of matrix square root. |
[out] | result | matrix square root of upper triangular part of arg . |
Only the upper triangular part (including the diagonal) of result
is updated, the rest is not touched. See MatrixBase::sqrt() for details on how this computation is implemented.