net.sourceforge.combean.interfaces.mathprog.linalg
Interface Matrix

Package class diagram package Matrix
All Superinterfaces:
AbstractMatrix, ColumnMatrix, RowMatrix
All Known Implementing Classes:
DoubleMatrix, IdentityMatrix

public interface Matrix
extends ColumnMatrix, RowMatrix

A matrix which can be accessed column- or rowwise and where free access to any element is possible (not only to complete row or column vectors).


Method Summary
 double getDoubleAt(int row, int column)
           
 
Methods inherited from interface net.sourceforge.combean.interfaces.mathprog.linalg.ColumnMatrix
getColumnVector
 
Methods inherited from interface net.sourceforge.combean.interfaces.mathprog.linalg.RowMatrix
getRowVector
 
Methods inherited from interface net.sourceforge.combean.interfaces.mathprog.linalg.AbstractMatrix
getNumColumns, getNumRows
 

Method Detail

getDoubleAt

double getDoubleAt(int row,
                   int column)