Creates a function that adds the results of two functions: h(x) = f1(x) + f2(x).
Namespace: Altaxo.Calc.RootFindingAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntaxpublic 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,
DoubleA function representing the pointwise sum of
f1 and
f2.
See Also