Uses of Class
pal.math.Matrix

Packages that use Matrix
pal.math Classes for math stuff such as optimisation, numerical derivatives, matrix exponentials, random numbers, special function etc. 
 

Uses of Matrix in pal.math
 

Methods in pal.math that return Matrix
 Matrix Matrix.getAppendedHorizontally(Matrix other)
           
 Matrix Matrix.getAppendedVertically(Matrix other)
           
 Matrix Matrix.getInverse()
          Obtains the inverse of a matrix by appending identity and doing row reduction.
 Matrix Matrix.getMatrixCopy()
          Cloning
 Matrix Matrix.getMultiplied(double scale)
           
 Matrix Matrix.getMultiplied(Matrix other)
          Multiply as in [this][other]
 Matrix Matrix.getRowReduced()
          Peforms a simple row reduction tramsformation
 Matrix Matrix.getSubsetColumns(int startColumn, int numberToKeep)
          Returns a new Matrix that is formed from a subset of the colums of this matrix
 Matrix Matrix.getTranspose()
           
 

Methods in pal.math with parameters of type Matrix
 Matrix Matrix.getAppendedHorizontally(Matrix other)
           
 Matrix Matrix.getAppendedVertically(Matrix other)
           
 Matrix Matrix.getMultiplied(Matrix other)
          Multiply as in [this][other]