Class Sinc

    • Constructor Summary

      Constructors 
      Constructor Description
      Sinc()
      The sinc function, sin(x) / x.
      Sinc​(boolean normalized)
      Instantiates the sinc function.
    • Method Summary

      Modifier and Type Method Description
      double value​(double x)
      Compute the value of the function.
      DerivativeStructure value​(DerivativeStructure t)
      Simple mathematical function.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • Sinc

        public Sinc()
        The sinc function, sin(x) / x.
      • Sinc

        public Sinc​(boolean normalized)
        Instantiates the sinc function.
        Parameters:
        normalized - If true, the function is sin(πx) / πx, otherwise sin(x) / x.