Class GenericFieldMatrixField<E>

  • Type Parameters:
    E - base type for elements
    All Implemented Interfaces:
    FieldI, IntegerConvertor, MatrixFieldI, JepComponent, java.io.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 RationalMatrixTest2.

    Since:
    Jep 3.5 / Extensions 2.0
    See Also:
    GenericMatrixFactory, Serialized Form