Uses of Class
org.ojalgo.function.series.PeriodicFunction
Packages that use PeriodicFunction
-
Uses of PeriodicFunction in org.ojalgo.data.transform
Methods in org.ojalgo.data.transform with parameters of type PeriodicFunctionModifier and TypeMethodDescriptionstatic MatrixStore
<ComplexNumber> DiscreteFourierTransform.sample
(PeriodicFunction function, int nbSamples) -
Uses of PeriodicFunction in org.ojalgo.function.series
Fields in org.ojalgo.function.series declared as PeriodicFunctionModifier and TypeFieldDescriptionstatic final PeriodicFunction
PeriodicFunction.SAWTOOTH
https://en.wikipedia.org/wiki/Sawtooth_wavestatic final PeriodicFunction
PeriodicFunction.SINE
https://en.wikipedia.org/wiki/Sine_wavestatic final PeriodicFunction
PeriodicFunction.SQUARE
https://en.wikipedia.org/wiki/Square_wavestatic final PeriodicFunction
PeriodicFunction.TRIANGLE
https://en.wikipedia.org/wiki/Triangle_waveMethods in org.ojalgo.function.series that return PeriodicFunctionModifier and TypeMethodDescriptionstatic PeriodicFunction
PeriodicFunction.of
(double origin, DoubleUnaryOperator shape) static PeriodicFunction
PeriodicFunction.of
(DoubleUnaryOperator shape) Origin at zero, and period 2π [0, 2π).static PeriodicFunction
PeriodicFunction.ofCentered
(DoubleUnaryOperator shape) Origin at -π, and period 2π [-π, π).PeriodicFunction.withInterval
(double origin, double period) interval = [origin, origin+period)PeriodicFunction.withOrigin
(double origin) interval = [origin, origin+period)PeriodicFunction.withPeriod
(double period) interval = [origin, origin+period)PeriodicFunction.withShape
(DoubleUnaryOperator shape) The shape is the function that is repeated in regular intervals.Methods in org.ojalgo.function.series with parameters of type PeriodicFunctionModifier and TypeMethodDescriptionstatic FourierSeries
FourierSeries.estimate
(PeriodicFunction function, int nbSamples)