pow(float, float)

べき乗を求める。

float pow(
    float fValue,
    float fExponent
);

Parameters

fValue

べき乗計算する元の数値(浮動小数値)

fExponent

べき指数。何乗するかの数値(浮動小数値)


Description

fValueをfExponent回乗算して結果を返す。



Version

1.22

See Also

functions: log | sqrt
categories: Math Functions


author: Charles Feduke, editor: Tom Cassiotis, JP team: ngtaicho
Send comments on this topic.