Click or drag to resize

GenerateLinearRangeMapT Method

Generate samples by sampling a function at linearly spaced points within the inclusive interval (start, stop) and the provide step. The start value is aways included as first value, but stop is only included if it stop-start is a multiple of step.

Namespace: Altaxo.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static T[] LinearRangeMap<T>(
	double start,
	double step,
	double stop,
	Func<double, T> map
)

Parameters

start  Double

[Missing <param name="start"/> documentation for "M:Altaxo.Calc.Generate.LinearRangeMap``1(System.Double,System.Double,System.Double,System.Func{System.Double,``0})"]

step  Double

[Missing <param name="step"/> documentation for "M:Altaxo.Calc.Generate.LinearRangeMap``1(System.Double,System.Double,System.Double,System.Func{System.Double,``0})"]

stop  Double

[Missing <param name="stop"/> documentation for "M:Altaxo.Calc.Generate.LinearRangeMap``1(System.Double,System.Double,System.Double,System.Func{System.Double,``0})"]

map  FuncDouble, T

[Missing <param name="map"/> documentation for "M:Altaxo.Calc.Generate.LinearRangeMap``1(System.Double,System.Double,System.Double,System.Func{System.Double,``0})"]

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "M:Altaxo.Calc.Generate.LinearRangeMap``1(System.Double,System.Double,System.Double,System.Func{System.Double,``0})"]

Return Value

T

[Missing <returns> documentation for "M:Altaxo.Calc.Generate.LinearRangeMap``1(System.Double,System.Double,System.Double,System.Func{System.Double,``0})"]

See Also