Uses of Interface
linearalgebra.MatrixInterface

Packages that use MatrixInterface
linearalgebra   
linearalgebra.numeric   
 

Uses of MatrixInterface in linearalgebra
 

Subinterfaces of MatrixInterface in linearalgebra
 interface ColumnInterface
           
 interface RowInterface
           
 

Classes in linearalgebra that implement MatrixInterface
 class IdentityMatrix
           
 class PermutationMatrix
           
 

Methods in linearalgebra that return MatrixInterface
 MatrixInterface PermutationMatrix.factorInverse()
           
 MatrixInterface MatrixInterface.factorInverse()
           
 MatrixInterface IdentityMatrix.factorInverse()
           
 MatrixInterface PermutationMatrix.factorL(PermutationMatrix p)
           
 MatrixInterface MatrixInterface.factorL(PermutationMatrix p)
           
 MatrixInterface IdentityMatrix.factorL(PermutationMatrix p)
           
 MatrixInterface PermutationMatrix.factorL(PermutationMatrix p, boolean partialPivot)
           
 MatrixInterface MatrixInterface.factorL(PermutationMatrix p, boolean partialPivot)
           
 MatrixInterface IdentityMatrix.factorL(PermutationMatrix p, boolean partialPivot)
           
 MatrixInterface PermutationMatrix.factorU(PermutationMatrix p)
           
 MatrixInterface MatrixInterface.factorU(PermutationMatrix p)
           
 MatrixInterface IdentityMatrix.factorU(PermutationMatrix p)
           
 MatrixInterface PermutationMatrix.getOrthogonalProjectionMatrix()
           
 MatrixInterface MatrixInterface.getOrthogonalProjectionMatrix()
           
 MatrixInterface IdentityMatrix.getOrthogonalProjectionMatrix()
           
 MatrixInterface PermutationMatrix.getProjectionMatrix()
           
 MatrixInterface MatrixInterface.getProjectionMatrix()
           
 MatrixInterface IdentityMatrix.getProjectionMatrix()
           
 MatrixInterface PermutationMatrix.getReflectionMatrix()
           
 MatrixInterface MatrixInterface.getReflectionMatrix()
           
 MatrixInterface IdentityMatrix.getReflectionMatrix()
           
 MatrixInterface PermutationMatrix.getTranspose()
           
 MatrixInterface MatrixInterface.getTranspose()
           
 MatrixInterface IdentityMatrix.getTranspose()
           
 

Uses of MatrixInterface in linearalgebra.numeric
 

Subinterfaces of MatrixInterface in linearalgebra.numeric
 interface NumericColumnInterface
           
 interface NumericMatrixInterface
           
 interface NumericRowInterface
           
 

Classes in linearalgebra.numeric that implement MatrixInterface
 class AbstractMatrix
           
 class Matrix
           
(package private)  class MatrixVector
           
 class NumericColumn
           
 class NumericRow
           
 class TransposeWrapper
           
 

Methods in linearalgebra.numeric that return MatrixInterface
private  MatrixInterface AbstractMatrix.choleskyDecomposition()
           
 MatrixInterface NumericRow.factorInverse()
           
 MatrixInterface NumericColumn.factorInverse()
           
 MatrixInterface AbstractMatrix.factorInverse()
           
 MatrixInterface NumericRow.factorL(PermutationMatrix p)
           
 MatrixInterface NumericColumn.factorL(PermutationMatrix p)
           
 MatrixInterface AbstractMatrix.factorL(PermutationMatrix p)
           
 MatrixInterface NumericRow.factorL(PermutationMatrix p, boolean partialPivot)
           
 MatrixInterface NumericColumn.factorL(PermutationMatrix p, boolean partialPivot)
           
 MatrixInterface AbstractMatrix.factorL(PermutationMatrix p, boolean partialPivot)
           
 MatrixInterface NumericRow.factorU(PermutationMatrix p)
           
 MatrixInterface NumericColumn.factorU(PermutationMatrix p)
           
 MatrixInterface AbstractMatrix.factorU(PermutationMatrix p)
           
 MatrixInterface NumericRow.getOrthogonalProjectionMatrix()
           
 MatrixInterface NumericColumn.getOrthogonalProjectionMatrix()
           
 MatrixInterface AbstractMatrix.getOrthogonalProjectionMatrix()
           
 MatrixInterface NumericRow.getProjectionMatrix()
           
 MatrixInterface NumericColumn.getProjectionMatrix()
           
 MatrixInterface AbstractMatrix.getProjectionMatrix()
           
 MatrixInterface NumericRow.getReflectionMatrix()
           
 MatrixInterface NumericColumn.getReflectionMatrix()
           
 MatrixInterface AbstractMatrix.getReflectionMatrix()
           
 MatrixInterface TransposeWrapper.getTranspose()
           
 MatrixInterface NumericRow.getTranspose()
           
 MatrixInterface NumericColumn.getTranspose()
           
 MatrixInterface Matrix.getTranspose()
           
 

Methods in linearalgebra.numeric with parameters of type MatrixInterface
private  boolean AbstractMatrix.partialPivotDown(int row, int col, PermutationMatrix p, MatrixInterface l)
           
private  boolean AbstractMatrix.setupColumnPivot(int row, int col, PermutationMatrix p, MatrixInterface l, boolean partialPivot)