Interface IDtoGaussCdfFunction

All Superinterfaces:
IDtoAbstractFunction
All Known Implementing Classes:
DtoGaussCdfFunction

public interface IDtoGaussCdfFunction extends IDtoAbstractFunction
Gaussian cummulative distribution function. Numeric input and output.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
     
  • Method Summary

    Modifier and Type
    Method
    Description
    long
    FunctionId of the only input function.
    long
    ID of the function.
    double
    Mean of Gaussian.
    double
    Standard deviation of Gaussian.
    Type of this object.
    void
    setArgument(long argument)
    FunctionId of the only input function.
    void
    setId(long id)
    ID of the function.
    void
    setMean(double mean)
    Mean of Gaussian.
    void
    setStd(double std)
    Standard deviation of Gaussian.
  • Field Details

  • Method Details

    • getType

      String getType()
      Type of this object.
      Specified by:
      getType in interface IDtoAbstractFunction
    • getId

      long getId()
      ID of the function.
      Specified by:
      getId in interface IDtoAbstractFunction
    • setId

      void setId(long id)
      ID of the function.
      Specified by:
      setId in interface IDtoAbstractFunction
    • getArgument

      long getArgument()
      FunctionId of the only input function.
    • setArgument

      void setArgument(long argument)
      FunctionId of the only input function.
    • getMean

      double getMean()
      Mean of Gaussian.
    • setMean

      void setMean(double mean)
      Mean of Gaussian.
    • getStd

      double getStd()
      Standard deviation of Gaussian.
    • setStd

      void setStd(double std)
      Standard deviation of Gaussian.