Uses of Class
shh.csparse.DenseMatrixZ

Packages that use DenseMatrixZ
shh.csparse   
 

Uses of DenseMatrixZ in shh.csparse
 

Methods in shh.csparse that return DenseMatrixZ
 DenseMatrixZ CSparse.toDenseZ()
          Returns a DenseMatrixZ with the same size and entries as this.
 DenseMatrixZ CSparse.moveToDenseZ(int i0, int i1, int j0, int j1)
          Destructively removes a rectangular block from this matrix, putting the block into a dense matrix and returning the latter.
 DenseMatrixZ CSparse.moveToDenseZ(int i0, int i1, int j0, int j1, int j2, int j3)
          Destructively removes two rectangular blocks from this matrix, putting the blocks side by side into a dense matrix and returning the latter.
 

Methods in shh.csparse with parameters of type DenseMatrixZ
 void CSparse.moveFromDenseZ(DenseMatrixZ M, int i0, int i1, int j0, int j1)
          Destructively replaces a rectangular block of this matrix with the contents of M.
 void CSparse.moveFromDenseZ(DenseMatrixZ M, int i0, int i1, int j0, int j1, int j2, int j3)
          Destructively replaces two rectangular blocks of this matrix with the contents of M.