Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

il y a 3 ans
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <html>
  3. <!-- Created by GNU Texinfo 6.5, http://www.gnu.org/software/texinfo/ -->
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <title>ilogb (LIBM)</title>
  7. <meta name="description" content="ilogb (LIBM)">
  8. <meta name="keywords" content="ilogb (LIBM)">
  9. <meta name="resource-type" content="document">
  10. <meta name="distribution" content="global">
  11. <meta name="Generator" content="makeinfo">
  12. <link href="index.html#Top" rel="start" title="Top">
  13. <link href="Document-Index.html#Document-Index" rel="index" title="Document Index">
  14. <link href="Document-Index.html#SEC_Contents" rel="contents" title="Table of Contents">
  15. <link href="Math.html#Math" rel="up" title="Math">
  16. <link href="infinity.html#infinity" rel="next" title="infinity">
  17. <link href="hypot.html#hypot" rel="prev" title="hypot">
  18. <style type="text/css">
  19. <!--
  20. a.summary-letter {text-decoration: none}
  21. blockquote.indentedblock {margin-right: 0em}
  22. blockquote.smallindentedblock {margin-right: 0em; font-size: smaller}
  23. blockquote.smallquotation {font-size: smaller}
  24. div.display {margin-left: 3.2em}
  25. div.example {margin-left: 3.2em}
  26. div.lisp {margin-left: 3.2em}
  27. div.smalldisplay {margin-left: 3.2em}
  28. div.smallexample {margin-left: 3.2em}
  29. div.smalllisp {margin-left: 3.2em}
  30. kbd {font-style: oblique}
  31. pre.display {font-family: inherit}
  32. pre.format {font-family: inherit}
  33. pre.menu-comment {font-family: serif}
  34. pre.menu-preformatted {font-family: serif}
  35. pre.smalldisplay {font-family: inherit; font-size: smaller}
  36. pre.smallexample {font-size: smaller}
  37. pre.smallformat {font-family: inherit; font-size: smaller}
  38. pre.smalllisp {font-size: smaller}
  39. span.nolinebreak {white-space: nowrap}
  40. span.roman {font-family: initial; font-weight: normal}
  41. span.sansserif {font-family: sans-serif; font-weight: normal}
  42. ul.no-bullet {list-style: none}
  43. -->
  44. </style>
  45. </head>
  46. <body lang="en">
  47. <a name="ilogb"></a>
  48. <div class="header">
  49. <p>
  50. Next: <a href="infinity.html#infinity" accesskey="n" rel="next">infinity</a>, Previous: <a href="hypot.html#hypot" accesskey="p" rel="prev">hypot</a>, Up: <a href="Math.html#Math" accesskey="u" rel="up">Math</a> &nbsp; [<a href="Document-Index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Document-Index.html#Document-Index" title="Index" rel="index">Index</a>]</p>
  51. </div>
  52. <hr>
  53. <a name="ilogb_002c-ilogbf_002d_002d_002dget-exponent-of-floating_002dpoint-number"></a>
  54. <h3 class="section">1.29 <code>ilogb</code>, <code>ilogbf</code>&mdash;get exponent of floating-point number</h3>
  55. <a name="index-ilogb"></a>
  56. <a name="index-ilogbf"></a>
  57. <p><strong>Synopsis</strong>
  58. </p><div class="example">
  59. <pre class="example">#include &lt;math.h&gt;
  60. int ilogb(double <var>val</var>);
  61. int ilogbf(float <var>val</var>);
  62. </pre></div>
  63. <p><strong>Description</strong><br>
  64. </p>
  65. <p>All nonzero, normal numbers can be described as <var>m</var> *
  66. 2**<var>p</var>. <code>ilogb</code> and <code>ilogbf</code> examine the argument
  67. <var>val</var>, and return <var>p</var>. The functions <code>frexp</code> and
  68. <code>frexpf</code> are similar to <code>ilogb</code> and <code>ilogbf</code>, but also
  69. return <var>m</var>.
  70. </p>
  71. <br>
  72. <p><strong>Returns</strong><br>
  73. </p>
  74. <p><code>ilogb</code> and <code>ilogbf</code> return the power of two used to form the
  75. floating-point argument.
  76. If <var>val</var> is <code>0</code>, they return <code>FP_ILOGB0</code>.
  77. If <var>val</var> is infinite, they return <code>INT_MAX</code>.
  78. If <var>val</var> is NaN, they return <code>FP_ILOGBNAN</code>.
  79. (<code>FP_ILOGB0</code> and <code>FP_ILOGBNAN</code> are defined in math.h, but in turn are
  80. defined as INT_MIN or INT_MAX from limits.h. The value of FP_ILOGB0 may be
  81. either INT_MIN or -INT_MAX. The value of FP_ILOGBNAN may be either INT_MAX or
  82. INT_MIN.)
  83. </p>
  84. <br>
  85. <p><strong>Portability</strong><br>
  86. C99, POSIX
  87. </p>
  88. <br>
  89. </body>
  90. </html>