formatting

This commit is contained in:
Marc Haubenstock 2022-09-14 19:07:38 +02:00
parent c62801114b
commit a0412c39f2
1 changed files with 9 additions and 2 deletions

View File

@ -232,8 +232,15 @@ where
/// The complex eigen decomposition of the given matrix.
///
/// Panics if the eigenvalue computation does not converge.
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>>)
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>,
{