GenerateMapSequenceTA, T Method |
Generate a sample sequence by sampling a function at the provided point sequence.
Namespace: Altaxo.CalcAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic static IEnumerable<T> MapSequence<TA, T>(
IEnumerable<TA> points,
Func<TA, T> map
)
Parameters
- points IEnumerableTA
- 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
IEnumerableTThe sampled value sequence.
See Also