Single.Pow(Single, Single) Method

Definition

Computes a value raised to a given power.

public:
 static float Pow(float x, float y) = System::Numerics::IPowerFunctions<float>::Pow;
public static float Pow (float x, float y);
static member Pow : single * single -> single
Public Shared Function Pow (x As Single, y As Single) As Single

Parameters

x
Single

The value which is raised to the power of x.

y
Single

The power to which x is raised.

Returns

x raised to the power of y.

Implements

Applies to