sbrt.kernel.math.algebra
Interface SmdMatrix<R,C>
- Type Parameters:
R
- the row type.C
- the column type.
- All Superinterfaces:
- DoubleMatrix<R,C>, DoubleMatrixBuilder<R,C>, Matrix<R,C,java.lang.Double>, MatrixBuilder<R,C,java.lang.Double>, SparseDoubleMatrix<R,C>
- All Known Implementing Classes:
- AbstractSmdMatrix, HashMatrix, RowOrTreeMatrix, TreeMatrix
public interface SmdMatrix<R,C>
- extends DoubleMatrixBuilder<R,C>, SparseDoubleMatrix<R,C>
This interface is used to represent sparse mutable matrices
containing strictly double precision numbers as elements.
- Author:
- This interface was written and documented by
Jeremiah Wright while in the Wagner lab.
Method Summary |
void |
setElements(SparseDoubleMatrix<? extends R,? extends C> m)
Sets the corresponding elements of this matrix to
those of the provided matrix. |
setElements
void setElements(SparseDoubleMatrix<? extends R,? extends C> m)
- Sets the corresponding elements of this matrix to
those of the provided matrix.
- Parameters:
m
- the matrix whose elements are to be copied
into this matrix.