pow(base, exponent)

描述

计算一个数字的乘方结果,pow() 也可以计算小数次方的乘方结果,这在计算数值或曲线的指数映射时是很有用的。

参数

base: 欲乘方的数字 (double)
exponent: 向上乘的次方数 (double)

回传

数字乘方的结果 (double)

范例

请参考 Arduino 代码库中的 fscale 函式

See also

sqrt()
double


语法参考主页面

本页由热血青年 LBU 译自英文版。

The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.