関数sign マニュアル
(The documentation of function
sign
)
Last Update: 2021/11/30
◆機能・用途
(Purpose)
double型変数の符合を調べる。
Survey the sign of a
double
-type variable.
◆形式
(Format)
#include <doublemath.h>
inline int sign(const double d)
◆引数
(Arguments)
d
符合を調べたい実数。
The real number for which the sign is to be surveyed.
◆戻り値
(Return value)
\(d\geq 0\)のとき1、\(d < 0\)のとき\(-1\)。
1 if \(d\geq 0\), 0 otherwise.
◆使用例
(Example)
double d,e;
int i=sign(d)∗sign(e);