Functor that takes a floating point number, and returns a floating point number.

Namespace: CenterSpace.NMath.Core
Assembly: NMathPremium (in NMathPremium.dll) Version: 5.3.0.0

Syntax

C#
[ObsoleteAttribute("Use Func< float, float >")]
public delegate float FloatUnaryFunction(
	float x
)
Visual Basic
<ObsoleteAttribute("Use Func< float, float >")> _
Public Delegate Function FloatUnaryFunction ( _
	x As Single _
) As Single
Visual C++
[ObsoleteAttribute(L"Use Func< float, float >")]
public delegate float FloatUnaryFunction(
	float x
)

Parameters

x
Type: System..::..Single

See Also