名前空間
変種
操作

std::isnormal

提供: cppreference.com
< cpp‎ | numeric‎ | math

 
 
 
一般的な数学関数
関数
基本的な演算
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)(C++11)(C++11)
指数関数
(C++11)
(C++11)
(C++11)
(C++11)
冪関数
(C++11)
(C++11)
三角関数と双曲線関数
(C++11)
(C++11)
(C++11)
誤差関数とガンマ関数
(C++11)
(C++11)
(C++11)
(C++11)
最も近い整数
(C++11)(C++11)(C++11)
(C++11)
(C++11)
(C++11)(C++11)(C++11)
浮動小数点操作関数
(C++11)(C++11)
(C++11)
(C++11)
(C++11)(C++11)
(C++11)
分類および比較
(C++11)
(C++11)
(C++11)
(C++11)
isnormal
(C++11)
(C++11)
(C++11)
(C++11)
マクロ定数
(C++11)(C++11)(C++11)(C++11)(C++11)
 
ヘッダ <cmath> で定義
bool isnormal( float arg );
(C++11およびそれ以降)
bool isnormal( double arg );
(C++11およびそれ以降)
bool isnormal( long double arg );
(C++11およびそれ以降)
指定された浮動小数点数argが正常であるかどうかを決定します、すなわち、どちらもゼロ、無限の非正規、NORNaNです.
Original:
Determines if the given floating point number arg is normal, i.e. is neither zero, subnormal, infinite, nor NaN.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[編集] パラメータ

arg -
浮動小数点値
Original:
floating point value
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[編集] 値を返します

true場合argfalseそうでなければ、正常です
Original:
true if arg is normal, false otherwise
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[編集] 参照

指定された浮動小数点値を分類します
(関数) [edit]
(C++11)
指定された数値が有限の値を持つかどうか調べます
(関数) [edit]
(C++11)
指定された数値が無限かどうか調べます
(関数) [edit]
(C++11)
指定された数値が NaN かどうか調べます
(関数) [edit]