Click or drag to resize

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.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public 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

VectorT
A new vector containing the mapped values.
See Also