sqrt(float)

平方根を求める

float sqrt(
    float fValue
);

Parameters

fValue

平方根を求めたい数値(浮動小数値)


Description

fValueの平方根を計算した結果を返す。


Remarks

fValueの値が0以下の場合は0を返す(仮想の数値をサポートしていない)。



Version

1.22

See Also

functions: log | pow
categories: Math Functions


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