Click or drag to resize

ScriptExecutionBaseMap(FuncDouble, Double, Double, DoubleColumn, Double) Method

Applies the specified binary function to each element in column x and to paramenter y.

Namespace: Altaxo.Calc
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static DoubleColumn Map(
	Func<double, double, double> function,
	DoubleColumn x,
	double y
)

Parameters

function  FuncDouble, Double, Double
The function to apply.
x  DoubleColumn
The column containing the elements to which the specified function should be applied (as first argument of that function).
y  Double
A double-precision numeric value used as second argument of that function.

Return Value

DoubleColumn
A new column in which each element y[i] is the function applied to the element x[i] and argument y, i.e. y[i] = function(x[i], y).
See Also