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). |
copyright
public static final java.lang.String copyright
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)