Uses of Class
org.das2.math.matrix.Matrix

Packages that use Matrix
org.das2.math.matrix Matrix class and inversion routine. 
 

Uses of Matrix in org.das2.math.matrix
 

Subclasses of Matrix in org.das2.math.matrix
 class ArrayMatrix
           
 class CompositeMatrix
          All of the elementary row and column operations are applied to both underlying matrices.
 

Methods in org.das2.math.matrix that return Matrix
static Matrix MatrixUtil.identity(int rows)
           
static Matrix MatrixUtil.inverse(Matrix m)
           
static Matrix MatrixUtil.multiply(Matrix m1, Matrix m2)
           
 

Methods in org.das2.math.matrix with parameters of type Matrix
 void ArrayMatrix.copy(Matrix m)
           
 void Matrix.copy(Matrix m)
           
static Matrix MatrixUtil.inverse(Matrix m)
           
static Matrix MatrixUtil.multiply(Matrix m1, Matrix m2)
           
static void MatrixUtil.multiply(Matrix m1, Matrix m2, Matrix res)
           
static void MatrixUtil.pivot(Matrix m, int row)
           
static void MatrixUtil.print(Matrix m, java.io.PrintStream out)
           
 

Constructors in org.das2.math.matrix with parameters of type Matrix
ArrayMatrix(Matrix m)
           
CompositeMatrix(Matrix m1, Matrix m2)