FloatMath.Pow(Single, Single) Method

Definition

Returns the closest float approximation of the result of raising x to the power of y.

[Android.Runtime.Register("pow", "(FF)F", "")]
public static float Pow (float x, float y);
[<Android.Runtime.Register("pow", "(FF)F", "")>]
static member Pow : single * single -> single

Parameters

x
Single

the base of the operation.

y
Single

the exponent of the operation.

Returns

x to the power of y.

Attributes

Remarks

Returns the closest float approximation of the result of raising x to the power of y.

Java documentation for android.util.FloatMath.pow(float, float).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to