pub trait MatrixExp<T = Self> {
// Required method
fn exp(self) -> T;
}👎Deprecated since 0.2.0: Please use nalgebra exp instead
Required Methods§
Implementations on Foreign Types§
Source§impl<T, D> MatrixExp for OMatrix<T, D, D>
Basic implementation of matrix exponential for complex matrices.
It does it by first diagonalizing the matrix then exponentiate the diagonal
and retransforms it back to the original basis.
impl<T, D> MatrixExp for OMatrix<T, D, D>
Basic implementation of matrix exponential for complex matrices. It does it by first diagonalizing the matrix then exponentiate the diagonal and retransforms it back to the original basis.