Class GenericFieldMatrixField<E>

java.lang.Object
com.singularsys.extensions.matrix.genericmat.GenericMatrixField<E>
com.singularsys.extensions.matrix.genericmat.GenericFieldMatrixField<E>
Type Parameters:
E - base type for elements
All Implemented Interfaces:
FieldI, IntegerConvertor, MatrixFieldI, JepComponent, Serializable

public class GenericFieldMatrixField<E> extends GenericMatrixField<E>
A MatrixField where the elements of the matrices and vectors are of type E and the evaluation is carried out using a GenericPowerField of type E. Generally there is no need to provide a concrete subclass just using
 RationalField rf = new RationalField();
 MatrixFactoryI mfact
     = new GenericMatrixFactory<>(rf);
 MatrixFieldI mfield = new GenericFieldMatrixField<>(mfact,rf);
 

A concrete implementation would just need to provide a constructor. An example use is at RationalMatrix2Test.

Since:
Jep 3.5 / Extensions 2.0
See Also: