public class HarmonicOscillator extends Object implements UnivariateDifferentiableFunction
Modifier and Type | Class and 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 and Description |
---|
HarmonicOscillator(double amplitudeIn,
double omegaIn,
double phaseIn)
Harmonic oscillator function.
|
Modifier and Type | Method and Description |
---|---|
DerivativeStructure |
value(DerivativeStructure t)
Simple mathematical function.
|
double |
value(double x)
Compute the value of the function.
|
public HarmonicOscillator(double amplitudeIn, double omegaIn, double phaseIn)
amplitudeIn
- Amplitude.omegaIn
- Angular frequency.phaseIn
- Phase.public double value(double x)
value
in interface UnivariateFunction
x
- Point at which the function value should be computed.public DerivativeStructure value(DerivativeStructure t)
UnivariateDifferentiableFunction
classes compute both the value and the first derivative of the function.
value
in interface UnivariateDifferentiableFunction
t
- function input valueCopyright © 2018 CNES. All Rights Reserved.