Click or drag to resize

UnaryFunctionsAdd Method

Creates a function that adds the results of two functions: h(x) = f1(x) + f2(x).

Namespace: Altaxo.Calc.RootFinding
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public static Func<double, double> Add(
	Func<double, double> f1,
	Func<double, double> f2
)

Parameters

f1  FuncDouble, Double
The first addend function.
f2  FuncDouble, Double
The second addend function.

Return Value

FuncDouble, Double
A function representing the pointwise sum of f1 and f2.
See Also