ScriptExecutionBaseMap(FuncDouble, Double, Double, DataColumn, Double) Method |
Applies the specified binary function to each element in column x and to paramenter y.
Namespace: Altaxo.CalcAssembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static DoubleColumn Map(
Func<double, double, double> function,
DataColumn x,
double y
)
Parameters
- function FuncDouble, Double, Double
- The function to apply.
- x DataColumn
- The column containing the numerical 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
DoubleColumnA 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