Skip to content

Commit e4bfc42

Browse files
Implement generalized eigenvalue solver for general square matrices (LAPACK's ?ggev) (#403)
* Implement generalized eigenvalue solver for general square matrices (LAPACK's ?ggev)
1 parent 44df860 commit e4bfc42

File tree

6 files changed

+870
-1
lines changed

6 files changed

+870
-1
lines changed

lax/src/eig.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ impl_eig_work_r!(f64, lapack_sys::dgeev_);
404404
///
405405
/// In the C-layout case, we need the conjugates of the left
406406
/// eigenvectors, so the signs should be reversed.
407-
fn reconstruct_eigenvectors<T: Scalar>(
407+
pub(crate) fn reconstruct_eigenvectors<T: Scalar>(
408408
take_hermite_conjugate: bool,
409409
eig_im: &[T],
410410
vr: &[T],

0 commit comments

Comments
 (0)