Click or drag to resize

GenerateMapSequenceTA, 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.3179.0 (4.8.3179.0)
Syntax
C#
public static IEnumerable<T> MapSequence<TA, T>(
	IEnumerable<TA> points,
	Func<TA, T> map
)

Parameters

points  IEnumerableTA

[Missing <param name="points"/> documentation for "M:Altaxo.Calc.Generate.MapSequence``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1})"]

map  FuncTA, T

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

Type Parameters

TA

[Missing <typeparam name="TA"/> documentation for "M:Altaxo.Calc.Generate.MapSequence``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1})"]

T

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

Return Value

IEnumerableT

[Missing <returns> documentation for "M:Altaxo.Calc.Generate.MapSequence``2(System.Collections.Generic.IEnumerable{``0},System.Func{``0,``1})"]

See Also