Pow
Pow(float1, float2) : float Pow(decimal1, decimal2) : decimal
Potenzfunktion
Details
- float1 / decimal1: Basis
- float2 / decimal2: Exponent
- Resultat:
float/decimalPotenz - Siehe: Verwandte Befehle ,
Log10 (),Log2 (),LogN (),Sqrt ()
Das Resultat entspricht (float1 / decimal1)<sup>(float2 / decimal
2)</sup>.
Beispiele:
Pow(3.0, 4.0) // 81.0
Pow(17.3, 1.0) // 17.3
Pow(1.0, 34.67) // 1.0
Pow(2.0, 0.0) // 1.0