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