Class ObjectMatrix
- java.lang.Object
-
- com.singularsys.extensions.matrix.genericmat.GenericMatrix<java.lang.Object>
-
- com.singularsys.extensions.matrix.objectmat.ObjectMatrix
-
- All Implemented Interfaces:
MatrixI,java.io.Serializable
public final class ObjectMatrix extends GenericMatrix<java.lang.Object>
A Matrix where all elements are simply Objects.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class com.singularsys.extensions.matrix.genericmat.GenericMatrix
data
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidsetEle(int row, int col, java.lang.Object val)Set an element of a matrix-
Methods inherited from class com.singularsys.extensions.matrix.genericmat.GenericMatrix
equals, getDimensions, getEle, getNCols, getNRows, hashCode, setEleG, toArray, toString
-
-
-
-
Method Detail
-
setEle
public void setEle(int row, int col, java.lang.Object val) throws EvaluationExceptionDescription copied from interface:MatrixISet an element of a matrix- Specified by:
setElein interfaceMatrixI- Overrides:
setElein classGenericMatrix<java.lang.Object>val- value to set- Throws:
EvaluationException
-
-