All Downloads are FREE. Search and download functionalities are using the official Maven repository.

mikera.matrixx.decompose.impl.hessenberg.HessenbergResult Maven / Gradle / Ivy

Go to download

Fast double-precision vector and matrix maths library for Java, supporting N-dimensional numeric arrays.

There is a newer version: 0.67.0
Show newest version
package mikera.matrixx.decompose.impl.hessenberg;

import mikera.matrixx.AMatrix;
import mikera.matrixx.decompose.IHessenbergResult;

public class HessenbergResult implements IHessenbergResult{
	private final AMatrix H;
	private final AMatrix Q;
	
	public HessenbergResult(AMatrix H, AMatrix Q) {
		this.H = H;
		this.Q = Q;
	}

    @Override
	public AMatrix getH() {
		return H;
	}
	
    @Override
	public AMatrix getQ() {
		return Q;
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy