Class RealFunctionTable

  • All Implemented Interfaces:
    JepComponent, java.io.Serializable

    public class RealFunctionTable
    extends FunctionTable
    Function table where evaluation is carried out using reals and never complex numbers. Evaluating sqrt(-1) will return NaN rather than a complex number. Function asin(2), acos(2), acosh(0.5), atanh(2), ln(-1), log(-1), lg(-1) also returns NaN. Furthermore, the constant i is not defined.
    See Also:
    Serialized Form
    • Constructor Detail

      • RealFunctionTable

        public RealFunctionTable()
      • RealFunctionTable

        protected RealFunctionTable​(java.util.Map<java.lang.String,​PostfixMathCommandI> tbl)
    • Method Detail

      • shallowCopy

        public FunctionTable shallowCopy()
        Description copied from class: FunctionTable
        Returns a new shallow copy of this function table. Calls the FunctionTable.threadSafeMapCopy() method to ensure the table is safe to use a separate thread. All sub-classes should override this methods to create a function table of the matching type. A typical implementation would be
                  @Override
                  public FunctionTable shallowCopy() {
                      Map<String,PostfixMathCommandI> newMap = this.threadSafeMapCopy();
                return new myFunctionTable(newMap);
                  }
         
        using the FunctionTable.threadSafeMapCopy() method to return a copy of the map of operators and a constructor taking this map which uses the FunctionTable(Map) constructor.
        Overrides:
        shallowCopy in class FunctionTable
        Returns:
        a new shallow copy of this function table