renaming method

This commit is contained in:
Marc Haubenstock 2022-09-13 19:09:27 +02:00
parent aafb713848
commit 743eaa4747
1 changed files with 2 additions and 2 deletions

View File

@ -229,10 +229,10 @@ where
None
}
/// The complex eigenvalues of the given matrix.
/// The complex eigen decomposition of the given matrix.
///
/// Panics if the eigenvalue computation does not converge.
pub fn complex_eigenvalues(mut m: OMatrix<T, D, D>, left_eigenvectors: bool, eigenvectors: bool)
pub fn complex_eigen_decomposition(mut m: OMatrix<T, D, D>, left_eigenvectors: bool, eigenvectors: bool)
-> (OVector<Complex<T>, D>, Option<OMatrix<T, D, D>>, Option<OMatrix<T, D, D>>)
where
DefaultAllocator: Allocator<Complex<T>, D> + Allocator<Complex<T>, D, D>,