Interface FieldElement<T>

Type Parameters:
T - the type of the field elements
All Known Subinterfaces:
RealFieldElement<T>
All Known Implementing Classes:
BigFraction, BigReal, Complex, Decimal64, DerivativeStructure, Dfp, DfpDec, Fraction, SparseGradient

public interface FieldElement<T>
Interface representing field elements.
Since:
2.0
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    add(T a)
    Compute this + a.
    divide(T a)
    Compute this ÷ a.
    Get the Field to which the instance belongs.
    multiply(int n)
    Compute n × this.
    Compute this × a.
    Returns the additive inverse of this element.
    Returns the multiplicative inverse of this element.
    Compute this - a.