RealValuedScalarFunctionT Delegate |
A real valued, scalar function of a variable of type T. The function may be either univariate
or multivariate, based on the dimensionality of T.
Namespace:
AGI.Foundation.NumericalMethods
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public delegate double RealValuedScalarFunction<T>(
T x
)
Public Delegate Function RealValuedScalarFunction(Of T) (
x As T
) As Double
generic<typename T>
public delegate double RealValuedScalarFunction(
T x
)
type RealValuedScalarFunction =
delegate of
x : 'T -> float
Parameters
- x
- Type: T
The independent variable to the function.
Type Parameters
- T
- The type of the function's independent variable.
Return Value
Type:
DoubleThe value of the function.
See Also