MathIsValidNumber

実数の正しさをチェックします。

bool  MathIsValidNumber(
   double  number      // number to check
   );

パラメーター

[in]チェックされた数値。

戻り値

チェックされた値が許容可能な実数である場合、trueを返します。チェックされた値が正または負の無限大、または「非数」(NaN)の場合、関数はfalseを返します。

例:

   double abnormal=MathArcsin(2.0);
   if(!MathIsValidNumber(abnormal)) Print(“Attention! MathArcsin(2.0) = “,abnormal); 

Leave a Reply

Your email address will not be published. Required fields are marked *

CAPTCHA


You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code class="" title="" data-url=""> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong> <pre class="" title="" data-url=""> <span class="" title="" data-url="">