Add support for matrix sine, cosine, sinh and cosh.

This commit is contained in:
Jitse Niesen
2010-01-11 18:05:30 +00:00
parent a05d42616b
commit 65cd1c7639
8 changed files with 401 additions and 22 deletions

View File

@@ -33,8 +33,8 @@
*
* \brief Compute the matrix exponential.
*
* \param M matrix whose exponential is to be computed.
* \param result pointer to the matrix in which to store the result.
* \param[in] M matrix whose exponential is to be computed.
* \param[out] result pointer to the matrix in which to store the result.
*
* The matrix exponential of \f$ M \f$ is defined by
* \f[ \exp(M) = \sum_{k=0}^\infty \frac{M^k}{k!}. \f]