Interface DiscreteFunction<X extends java.lang.Comparable<? super X>,​Y>

  • Type Parameters:
    X - the type of the independent variable of the function
    Y - the type of the dependent variable of the function
    All Superinterfaces:
    KeyValueFunction<X,​Y>, java.io.Serializable
    All Known Implementing Classes:
    SortedMapBackedDiscreteFunction

    public interface DiscreteFunction<X extends java.lang.Comparable<? super X>,​Y>
    extends KeyValueFunction<X,​Y>, java.io.Serializable
    THe following conditions are guaranteed:
    • The x-values are ordered by their natural ordering
    • the lists returned by getXs() and getYs() are of the same length.

    • Method Detail

      • getName

        java.lang.String getName()
      • getXs

        java.util.List<X> getXs()
      • getYs

        java.util.List<Y> getYs()
      • getYsErr

        java.util.List<Y> getYsErr()