mikera.matrixx.decompose.IHessenbergResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vectorz Show documentation
Show all versions of vectorz Show documentation
Fast double-precision vector and matrix maths library for Java, supporting N-dimensional numeric arrays.
package mikera.matrixx.decompose;
import mikera.matrixx.AMatrix;
/**
* Interface representing the result of a hessenberg decomposition
*
* @author prasant
*/
public interface IHessenbergResult {
/**
* An upper Hessenberg matrix from the decompostion.
*
* @return The extracted H matrix.
*/
public AMatrix getH();
/**
* An orthogonal matrix that has the following property: H = QTAQ
*
* @return The extracted Q matrix.
*/
public AMatrix getQ();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy