Calculates the result of raising a floating point number to a floating point power.

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

Syntax

C#
public static float Pow(
	float f,
	float g
)
Visual Basic (Declaration)
Public Shared Function Pow ( _
	f As Single, _
	g As Single _
) As Single
Visual C++
public:
static float Pow(
	float f, 
	float g
)

Parameters

f
Type: System..::.Single
A floating point number.
g
Type: System..::.Single
An exponent.

Return Value

The result of raising f to the g power.

See Also