Class FieldMatrixField

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

public class FieldMatrixField extends GenericMatrixField<Object>
An MatrixField where elements are of type Object and the operation on elements are defined by a field. To set up use
    NumberFactory numf = new DoubleNumberFactory();
    DoubleField df = new DoubleField();
    MatrixFactoryI mfac = new FieldObjectMatrixFactory(df,numf);
    MatrixFieldI mf = new FieldObjectMatrixField(mfac,df);
    MatrixOperatorTable opTab = new MatrixOperatorTable(mfac, mf);
    MatrixFunctionTable mftab = new MatrixFunctionTable(mfac, mf);
    jep = new Jep(opTab,mftab);
 
Author:
Richard Morris
See Also: