From 769f20ce6f813c8d7df2065092d21792da978319 Mon Sep 17 00:00:00 2001 From: metric-space Date: Wed, 19 Jan 2022 02:42:22 -0500 Subject: [PATCH] Comments more tailored to QZ --- nalgebra-lapack/src/qz.rs | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/nalgebra-lapack/src/qz.rs b/nalgebra-lapack/src/qz.rs index d6abac22..06ce0ba3 100644 --- a/nalgebra-lapack/src/qz.rs +++ b/nalgebra-lapack/src/qz.rs @@ -13,7 +13,7 @@ use na::{DefaultAllocator, Matrix, OMatrix, OVector, Scalar}; use lapack; -/// Eigendecomposition of a real square matrix with complex eigenvalues. +/// Generalized eigendecomposition of a pair of N*N square matrices. #[cfg_attr(feature = "serde-serialize", derive(Serialize, Deserialize))] #[cfg_attr( feature = "serde-serialize", @@ -57,14 +57,15 @@ impl QZ where DefaultAllocator: Allocator + Allocator, { - /// Computes the eigenvalues and real Schur form of the matrix `m`. + /// Attempts to compute the QZ decomposition of input square matrices `a` and `b`. /// /// Panics if the method did not converge. pub fn new(a: OMatrix, b: OMatrix) -> Self { - Self::try_new(a, b).expect("Schur decomposition: convergence failed.") + Self::try_new(a, b).expect("QZ decomposition: convergence failed.") } - /// Computes the eigenvalues and real Schur form of the matrix `m`. + /// Computes the decomposition of input matrices `a` and `b` into a pair of matrices of Schur vectors + /// , a quasi-upper triangular matrix and an upper-triangular matrix . /// /// Returns `None` if the method did not converge. pub fn try_new(mut a: OMatrix, mut b: OMatrix) -> Option { @@ -73,14 +74,14 @@ where "Unable to compute the qz decomposition of non-square matrices." ); - // another assert to compare shape? + assert!( + a.shape_generic() == b.shape_generic(), + "Unable to compute the qz decomposition of two square matrices of different dimensions." + ); let (nrows, ncols) = a.shape_generic(); let n = nrows.value(); - let lda = n as i32; - let ldb = lda.clone(); - let mut info = 0; let mut alphar = Matrix::zeros_generic(nrows, Const::<1>); @@ -151,8 +152,10 @@ where }) } - /// Retrieves the unitary matrix `Q` and the upper-quasitriangular matrix `T` such that the - /// decomposed matrix equals `Q * T * Q.transpose()`. + /// Retrieves the left and right matrices of Schur Vectors (VSL and VSR) + /// the upper-quasitriangular matrix `S` and upper triangular matrix `T` such that the + /// decomposed matrix `A` equals `VSL * S * VSL.transpose()` and + /// decomposed matrix `B` equals `VSL * T * VSL.transpose()`. pub fn unpack( self, ) -> (