All Packages  Class Hierarchy  This Package  Previous  Next  Index
  Class jnt.linear_algebra.QR
java.lang.Object
   |
   +----jnt.linear_algebra.QR
  -  public class QR
  
-  extends Object
  
QR matrix factorization (row-oriented).
Factorize a matrix into a QR form. (Q is orthogonal, R is upper
triangular.)
  
  -  
	QR()
   -  
 
  
  -  
	factor(double[][], double[])
   -  Factorize a matrix into a QR form.
 
  
QR
 public QR()
  
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