Uses of Interface
org.ojalgo.matrix.decomposition.QR
-
Packages that use QR Package Description org.ojalgo.matrix org.ojalgo.matrix.decomposition -
-
Uses of QR in org.ojalgo.matrix
Methods in org.ojalgo.matrix that return QR Modifier and Type Method Description (package private) abstract QR<N>
BasicMatrix. 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)
(package private) QR<java.lang.Double>
MatrixR032. newQR(Structure2D typical)
(package private) QR<java.lang.Double>
MatrixR064. newQR(Structure2D typical)
(package private) QR<Quadruple>
MatrixR128. newQR(Structure2D typical)
-
Uses of QR in org.ojalgo.matrix.decomposition
Classes in org.ojalgo.matrix.decomposition that implement QR Modifier and Type Class Description (package private) class
QRDecomposition<N extends java.lang.Comparable<N>>
(package private) static class
QRDecomposition.C128
(package private) static class
QRDecomposition.H256
(package private) static class
QRDecomposition.Q128
(package private) static class
QRDecomposition.R064
(package private) static class
QRDecomposition.R128
(package private) class
RawQR
For 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 QR Modifier and Type Method Description default QR<N>
QR.Factory. make(boolean fullSize)
default QR<N>
QR.Factory. make(Structure2D typical)
QR<N>
QR.Factory. make(Structure2D typical, boolean fullSize)
Methods in org.ojalgo.matrix.decomposition with parameters of type QR Modifier and Type Method Description static <N extends java.lang.Comparable<N>>
booleanQR. equals(MatrixStore<N> matrix, QR<N> decomposition, NumberContext context)
-