Click or drag to resize

UnaryFunctionsCompound Method

Creates a composite function: h(x) = f1(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> Compound(
	Func<double, double> f1,
	Func<double, double> f2
)

Parameters

f1  FuncDouble, Double
The outer function.
f2  FuncDouble, Double
The inner function.

Return Value

FuncDouble, Double
A function representing the composition f1(f2(x)).
See Also