Click or drag to resize

UnaryFunctions Class

Provides helpers for creating and composing unary functions (FuncT, TResult with Double input and output).
Inheritance Hierarchy
SystemObject
  Altaxo.Calc.RootFindingUnaryFunctions

Namespace: Altaxo.Calc.RootFinding
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public static class UnaryFunctions

The UnaryFunctions type exposes the following members.

Methods
 NameDescription
Public methodStatic memberAdd Creates a function that adds the results of two functions: h(x) = f1(x) + f2(x).
Public methodStatic memberCompound Creates a composite function: h(x) = f1(f2(x)).
Public methodStatic memberConstant Creates a constant function f(x) = a.
Public methodStatic memberIdentity Creates the identity function f(x) = x.
Public methodStatic memberMinus Creates the negation of a function: h(x) = -f(x).
Public methodStatic memberMultiply Creates a function that scales another function by a constant factor: h(x) = lambda * f(x).
Public methodStatic memberSubtract Creates a function that subtracts the results of two functions: h(x) = f1(x) - f2(x).
Top
See Also