All Packages Class Hierarchy This Package Previous Next Index
Class jnt.linear_algebra.QR_column
java.lang.Object
|
+----jnt.linear_algebra.QR_column
- public class QR_column
- extends Object
QR matrix factorization (column-oriented).
Factorize a matrix into a QR form. (Q is orthogonal, R is upper
triangular.)
-
QR_column()
-
-
factor(double[][], double[])
- Factorize a matrix into a QR form.
QR_column
public QR_column()
factor
public static void factor(double X[][],
double dr[])
- Factorize a matrix into a QR form. (Q is orthogonal, R is upper
triangular.)
- Parameters:
- X - (in/out) on input, the NxP array is the matrix to be factored.
on output, it holds the QR factorization, in a compact
form.
- dr - (out) main diagonal of R.
All Packages Class Hierarchy This Package Previous Next Index