Click or drag to resize

GenerateMapTA, T Method

Generate samples by sampling a function at the provided points.

Namespace: Altaxo.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static T[] Map<TA, T>(
	TA[] points,
	Func<TA, T> map
)

Parameters

points  TA
The points at which the function is sampled.
map  FuncTA, T
The function to sample.

Type Parameters

TA
The type of the input points.
T
The type of the generated values.

Return Value

T
The sampled values.
See Also