From 743eaa47474b63030a12a5c8cd7aaa7b5d8a890b Mon Sep 17 00:00:00 2001 From: Marc Haubenstock Date: Tue, 13 Sep 2022 19:09:27 +0200 Subject: [PATCH] renaming method --- nalgebra-lapack/src/eigen.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nalgebra-lapack/src/eigen.rs b/nalgebra-lapack/src/eigen.rs index 0c2106ad..1d78d036 100644 --- a/nalgebra-lapack/src/eigen.rs +++ b/nalgebra-lapack/src/eigen.rs @@ -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, left_eigenvectors: bool, eigenvectors: bool) + pub fn complex_eigen_decomposition(mut m: OMatrix, left_eigenvectors: bool, eigenvectors: bool) -> (OVector, D>, Option>, Option>) where DefaultAllocator: Allocator, D> + Allocator, D, D>,