Add in explicit type of matrix element to module overview docs
This commit is contained in:
parent
71699f35b7
commit
ed3a17ded8
|
@ -13,7 +13,7 @@ use na::{DefaultAllocator, Matrix, OMatrix, OVector, Scalar};
|
||||||
|
|
||||||
use lapack;
|
use lapack;
|
||||||
|
|
||||||
/// Generalized eigenvalues and generalized eigenvectors (left and right) of a pair of N*N square matrices.
|
/// Generalized eigenvalues and generalized eigenvectors (left and right) of a pair of N*N real square matrices.
|
||||||
///
|
///
|
||||||
/// Each generalized eigenvalue (lambda) satisfies determinant(A - lambda*B) = 0
|
/// Each generalized eigenvalue (lambda) satisfies determinant(A - lambda*B) = 0
|
||||||
///
|
///
|
||||||
|
|
|
@ -62,7 +62,7 @@ impl<T: QZScalar + RealField, D: Dim> QZ<T, D>
|
||||||
where
|
where
|
||||||
DefaultAllocator: Allocator<T, D, D> + Allocator<T, D>,
|
DefaultAllocator: Allocator<T, D, D> + Allocator<T, D>,
|
||||||
{
|
{
|
||||||
/// Attempts to compute the QZ decomposition of input square matrices `a` and `b`.
|
/// Attempts to compute the QZ decomposition of input real square matrices `a` and `b`.
|
||||||
///
|
///
|
||||||
/// i.e retrieves the left and right matrices of Schur Vectors (VSL and VSR)
|
/// i.e 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
|
/// the upper-quasitriangular matrix `S` and upper triangular matrix `T` such that the
|
||||||
|
|
Loading…
Reference in New Issue