Click or drag to resize

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.1.418.0 (24.1.418.0)
Syntax
public delegate double RealValuedScalarFunction<T>(
	T x
)

Parameters

x
Type: T
The independent variable to the function.

Type Parameters

T
The type of the function's independent variable.

Return Value

Type: Double
The value of the function.
See Also