UnaryFunctionsCompound Method |
Creates a composite function: h(x) = f1(f2(x)).
Namespace: Altaxo.Calc.RootFindingAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntaxpublic 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,
DoubleA function representing the composition
f1(
f2(x)).
See Also