mikera.matrixx.decompose.impl.qr.QRResult 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.impl.qr;
import mikera.matrixx.AMatrix;
import mikera.matrixx.decompose.IQRResult;
public class QRResult implements IQRResult {
private final AMatrix Q;
private final AMatrix R;
public QRResult(AMatrix Q, AMatrix R) {
this.Q=Q;
this.R=R;
}
@Override
public AMatrix getQ() {
return Q;
}
@Override
public AMatrix getR() {
return R;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy