renaming method
This commit is contained in:
parent
aafb713848
commit
743eaa4747
|
@ -229,10 +229,10 @@ where
|
||||||
None
|
None
|
||||||
}
|
}
|
||||||
|
|
||||||
/// The complex eigenvalues of the given matrix.
|
/// The complex eigen decomposition of the given matrix.
|
||||||
///
|
///
|
||||||
/// Panics if the eigenvalue computation does not converge.
|
/// 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>>)
|
-> (OVector<Complex<T>, D>, Option<OMatrix<T, D, D>>, Option<OMatrix<T, D, D>>)
|
||||||
where
|
where
|
||||||
DefaultAllocator: Allocator<Complex<T>, D> + Allocator<Complex<T>, D, D>,
|
DefaultAllocator: Allocator<Complex<T>, D> + Allocator<Complex<T>, D, D>,
|
||||||
|
|
Loading…
Reference in New Issue