Uses of Class
shh.csparse.SparseV

Packages that use SparseV
shh.csparse   
 

Uses of SparseV in shh.csparse
 

Fields in shh.csparse declared as SparseV
protected  SparseV[] CSparse.cols
          cols[j] is the j-th column of this sparse matrix.
 

Methods in shh.csparse that return SparseV
 SparseV CSparse.getCol(int j)
          Returns the jth column, or possibly null if the column is all zero.
 

Methods in shh.csparse with parameters of type SparseV
 void SparseV.add(SparseV b)
          Overwrites this with its sum with b.
 void SparseV.alter(SparseElt factor, SparseV b)
          Alters this by adding to it (the value in factor) times b.
 SparseElt SparseV.dot(SparseV b)
          Returns a SparseElt with unspecified index and value equal to the dot product of this and b.
static void SparseV.printLineByLine(SparseV v, int m, PrintStream stream)
          Prints v to stream as a dense vector of length m, one entry per line.
 

Constructors in shh.csparse with parameters of type SparseV
CSparse(int m, SparseV[] colArray)
          Constructs a matrix with m rows and the specified columns.