Class SimpleMatrixField

java.lang.Object
com.singularsys.extensions.matrix.genericmat.GenericMatrixField<Object>
com.singularsys.extensions.matrix.objectmat.SimpleMatrixField
All Implemented Interfaces:
FieldI, IntegerConvertor, MatrixFieldI, JepComponent, Serializable

public class SimpleMatrixField extends GenericMatrixField<Object>
An implementation using the default Jep methods for evaluation of elements of a matrix. so to add two elements it will use the Add class.
    MatrixFactoryI mfac = new ObjectMatrixFactory();
    MatrixFieldI mf = new SimpleMatrixField(mfac);
    MatrixOperatorTable opTab = new MatrixOperatorTable(mfac, mf);
    MatrixFunctionTable mftab = new MatrixFunctionTable(mfac, mf);
    jep = new Jep(opTab,mftab);
 
See Also: