Uses of Interface
org.ojalgo.matrix.decomposition.QR
Packages that use QR
Package
Description
-
Uses of QR in org.ojalgo.matrix
Methods in org.ojalgo.matrix that return QRModifier and TypeMethodDescriptionBasicMatrix.newQR(Structure2D typical) (package private) QR<ComplexNumber> MatrixC128.newQR(Structure2D typical) (package private) QR<Quaternion> MatrixH256.newQR(Structure2D typical) (package private) QR<RationalNumber> MatrixQ128.newQR(Structure2D typical) MatrixR032.newQR(Structure2D typical) MatrixR064.newQR(Structure2D typical) MatrixR128.newQR(Structure2D typical) -
Uses of QR in org.ojalgo.matrix.decomposition
Classes in org.ojalgo.matrix.decomposition that implement QRModifier and TypeClassDescription(package private) classDenseQR<N extends Comparable<N>>(package private) static final class(package private) static final class(package private) static final class(package private) static final class(package private) static final class(package private) final classFor an m-by-n matrix A with m >= n, the QR decomposition is an m-by-n orthogonal matrix Q and an n-by-n upper triangular matrix R so that A = Q*R.Methods in org.ojalgo.matrix.decomposition that return QRModifier and TypeMethodDescriptionQR.Factory.make(boolean fullSize) QR.Factory.make(Structure2D typical) QR.Factory.make(Structure2D typical, boolean fullSize) Methods in org.ojalgo.matrix.decomposition with parameters of type QRModifier and TypeMethodDescriptionstatic <N extends Comparable<N>>
booleanQR.equals(MatrixStore<N> matrix, QR<N> decomposition, NumberContext context) -
Uses of QR in org.ojalgo.optimisation.convex
Fields in org.ojalgo.optimisation.convex declared as QRConstructors in org.ojalgo.optimisation.convex with parameters of type QRModifierConstructorDescription(package private)NullSpaceProjection(ConvexData<Double> original, QR<Double> decomposition, MatrixStore<Double> Z, MatrixStore<Double> x0)