UnaryFunctionsSubtract Method |
Creates a function that subtracts 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> Subtract(
Func<double, double> f1,
Func<double, double> f2
)
Parameters
- f1 FuncDouble, Double
- The minuend function.
- f2 FuncDouble, Double
- The subtrahend function.
Return Value
FuncDouble,
DoubleA function representing the pointwise difference of
f1 and
f2.
See Also