VectorTMap2(FuncT, T, T, VectorT, Zeros) Method |
Applies a function to each value pair of two vectors and returns the results as a new vector.
Namespace: Altaxo.Calc.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic Vector<T> Map2(
Func<T, T, T> f,
Vector<T> other,
Zeros zeros = Zeros.AllowSkip
)
Parameters
- f FuncT, T, T
- The mapping function.
- other VectorT
- The other vector.
- zeros Zeros (Optional)
- Specifies whether zero values may be skipped.
Return Value
VectorTA new vector containing the mapped values.
See Also