Click or drag to resize

GeneratePeriodic Method

Create a periodic wave.

Namespace: Altaxo.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static double[] Periodic(
	int length,
	double samplingRate,
	double frequency,
	double amplitude = 1,
	double phase = 0,
	int delay = 0
)

Parameters

length  Int32
The number of samples to generate.
samplingRate  Double
Samples per time unit (Hz). Must be larger than twice the frequency to satisfy the Nyquist criterion.
frequency  Double
Frequency in periods per time unit (Hz).
amplitude  Double  (Optional)
The length of the period when sampled at one sample per time unit. This is the interval of the periodic domain, a typical value is 1.0, or 2*Pi for angular functions.
phase  Double  (Optional)
Optional phase offset.
delay  Int32  (Optional)
Optional delay, relative to the phase.

Return Value

Double

[Missing <returns> documentation for "M:Altaxo.Calc.Generate.Periodic(System.Int32,System.Double,System.Double,System.Double,System.Double,System.Int32)"]

See Also