Click or drag to resize

GenerateMap2SequenceTA, TB, T Method

Generate a sample sequence by sampling a function at the provided point sequence.

Namespace: Altaxo.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static IEnumerable<T> Map2Sequence<TA, TB, T>(
	IEnumerable<TA> pointsA,
	IEnumerable<TB> pointsB,
	Func<TA, TB, T> map
)

Parameters

pointsA  IEnumerableTA
The first set of points.
pointsB  IEnumerableTB
The second set of points.
map  FuncTA, TB, T
The function to sample.

Type Parameters

TA
The type of the first input points.
TB
The type of the second input points.
T
The type of the generated values.

Return Value

IEnumerableT
The sampled value sequence.
See Also