org.jmatrices.dbl
Interface MatrixVector

All Known Implementing Classes:
MatrixVectorImpl

public interface MatrixVector

MatrixVector

todo - open thought!

Author: purangp

Date: 10.03.2004 Time: 16:50:35


Method Summary
 int cols()
           
 double get(int row, int col)
           
 Vector getColumnVector(int col)
           
 Vector getRowVector(int row)
           
 int rows()
           
 void set(int row, int col, double value)
           
 

Method Detail

rows

public int rows()

cols

public int cols()

get

public double get(int row,
                  int col)

set

public void set(int row,
                int col,
                double value)

getRowVector

public Vector getRowVector(int row)

getColumnVector

public Vector getColumnVector(int col)