Click or drag to resize

UnaryFunctionsSubtract Method

Creates a function that subtracts 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> 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, Double
A function representing the pointwise difference of f1 and f2.
See Also