jcolibri.extensions.textual.IE.common.crn.matrix
Interface Matrix

All Known Implementing Classes:
FloatMatrix, OneByteMatrix

public interface Matrix

Version:
1.0
Author:
Juan A. Recio-Garcia

Method Summary
 Matrix copy()
           
 int getColumns()
           
 Matrix getDeepTraspose()
           
 int getRows()
           
 Matrix getShallowTraspose()
           
 float getValue(int row, int column)
           
 Matrix multiply(Matrix other)
           
 float multiply(Matrix other, int thisRow, int otherColumn)
           
 void setValue(int row, int column, float value)
           
 

Method Detail

getValue

float getValue(int row,
               int column)

setValue

void setValue(int row,
              int column,
              float value)

getShallowTraspose

Matrix getShallowTraspose()

getDeepTraspose

Matrix getDeepTraspose()

multiply

Matrix multiply(Matrix other)

multiply

float multiply(Matrix other,
               int thisRow,
               int otherColumn)

copy

Matrix copy()

getColumns

int getColumns()

getRows

int getRows()