GenerateMap2TA, TB, T Method |
Generate samples by sampling a function at the provided points.
Namespace: Altaxo.CalcAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic static T[] Map2<TA, TB, T>(
TA[] pointsA,
TB[] pointsB,
Func<TA, TB, T> map
)
Parameters
- pointsA TA
- The first set of points.
- pointsB TB
- 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
TThe sampled values.
See Also