Opus5
Interface SparseMatrix

All Superinterfaces:
Matrix
All Known Implementing Classes:
SparseMatrixAsLinkedList, SparseMatrixAsVector, SparseMatrixAsArray

public interface SparseMatrix
extends Matrix

Encapsulates methods for manipulating a sparse, two-dimensional matrix of doubles.

Version:
$Id: SparseMatrix.java,v 3.3 1998/07/28 14:08:46 brpreiss Exp $
Author:
Bruno R. Preiss, P.Eng.
See Also:
Matrix

Field Summary
static java.lang.String copyright
           
 
Method Summary
 void putZero(int i, int j)
          Stores a zero value in this matrix at position (i,j).
 
Methods inherited from interface Opus5.Matrix
get, plus, put, times, transpose
 

Field Detail

copyright

public static final java.lang.String copyright
Method Detail

putZero

public void putZero(int i,
                    int j)
Stores a zero value in this matrix at position (i,j).
Parameters:
i - The row number.
j - The column number.
See Also:
Matrix.put(int, int, double)