pub type SymmetricEigen = SymmetricEigen2;Expand description
The result of eigendecomposition of a symmetric matrix.
Aliased Type§
pub struct SymmetricEigen {
pub eigenvalues: Vec2,
pub eigenvectors: Mat2,
}Fields§
§eigenvalues: Vec2The eigenvalues of the symmetric 2x2 matrix.
eigenvectors: Mat2The two eigenvectors of the symmetric 2x2 matrix (as columns).