Click or drag to resize

GeneratePeriodicSequence Method

Create an infinite periodic wave sequence.

Namespace: Altaxo.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static IEnumerable<double> PeriodicSequence(
	double samplingRate,
	double frequency,
	double amplitude = 1,
	double phase = 0,
	int delay = 0
)

Parameters

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

IEnumerableDouble

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

See Also