Pow Function | |
Raise the first argument to the numeric power specified by the second argument.
Namespace:
XSharp.RT
Assembly:
XSharp.RT (in XSharp.RT.dll) Version: 2.19
Syntax FUNCTION Pow(
nBase AS USUAL,
nExponent AS USUAL
) AS FLOAT
public static Float Pow(
Usual nBase,
Usual nExponent
)
Request Example
View SourceParameters
- nBase
- Type: Usual
The base number. - nExponent
- Type: Usual
The power to which to raise the base number.
Return Value
Type:
FloatRemarks Examples
This example uses Pow() to raise 2 to the 3rd power:
See Also