Click or drag to resize

UnaryFunctionsMinus Method

Creates the negation of a function: h(x) = -f(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> Minus(
	Func<double, double> f
)

Parameters

f  FuncDouble, Double
The function to negate.

Return Value

FuncDouble, Double
A function representing the negation of f.
See Also