Class HarmonicOscillator

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      static class  HarmonicOscillator.Parametric
      Parametric function where the input array contains the parameters of the harmonic oscillator function, ordered as follows: Amplitude Angular frequency Phase
    • Constructor Summary

      Constructors 
      Constructor Description
      HarmonicOscillator​(double amplitude, double omega, double phase)
      Harmonic oscillator 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

      • HarmonicOscillator

        public HarmonicOscillator​(double amplitude,
                                  double omega,
                                  double phase)
        Harmonic oscillator function.
        Parameters:
        amplitude - Amplitude.
        omega - Angular frequency.
        phase - Phase.