saaps.math
Class ColVector

java.lang.Object
  |
  +--saaps.math.ColVector

public class ColVector
extends java.lang.Object


Field Summary
(package private)  double[] element
           
(package private)  int numOfRows
           
 
Constructor Summary
ColVector(int i)
           
 
Method Summary
 double getElement(int r)
           
 int getNumOfRows()
           
 void setElement(int r, double v)
           
 ColVector times(ColVector cv)
           
 ColVector times(double v)
           
 Matrix times(RowVector rv)
           
 RowVector transpose()
           
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Field Detail

numOfRows

int numOfRows

element

double[] element
Constructor Detail

ColVector

public ColVector(int i)
Method Detail

times

public Matrix times(RowVector rv)

times

public ColVector times(ColVector cv)

times

public ColVector times(double v)

transpose

public RowVector transpose()

getElement

public double getElement(int r)

setElement

public void setElement(int r,
                       double v)

getNumOfRows

public int getNumOfRows()