OSDN Git Service

Import translated manuals from JM CVS Repository.
[linuxjm/jm.git] / manual / LDP_man-pages / draft / man3 / frexp.3
1 .\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
2 .\"
3 .\" Permission is granted to make and distribute verbatim copies of this
4 .\" manual provided the copyright notice and this permission notice are
5 .\" preserved on all copies.
6 .\"
7 .\" Permission is granted to copy and distribute modified versions of this
8 .\" manual under the conditions for verbatim copying, provided that the
9 .\" entire resulting derived work is distributed under the terms of a
10 .\" permission notice identical to this one.
11 .\"
12 .\" Since the Linux kernel and libraries are constantly changing, this
13 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
14 .\" responsibility for errors or omissions, or for damages resulting from
15 .\" the use of the information contained herein.  The author(s) may not
16 .\" have taken the same level of care in the production of this manual,
17 .\" which is licensed free of charge, as they might when working
18 .\" professionally.
19 .\"
20 .\" Formatted or processed versions of this manual, if unaccompanied by
21 .\" the source, must acknowledge the copyright and authors of this work.
22 .\"
23 .\" References consulted:
24 .\"     Linux libc source code
25 .\"     Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
26 .\"     386BSD man pages
27 .\" Modified 1993-07-24 by Rik Faith (faith@cs.unc.edu)
28 .\" Modified 2002-07-27 by Walter Harms
29 .\"     (walter.harms@informatik.uni-oldenburg.de)
30 .\"
31 .\" Japanese Version Copyright (c) 1997 YOSHINO Takashi
32 .\"       all rights reserved.
33 .\" Translated 1997-01-21, YOSHINO Takashi <yoshino@civil.jcn.nihon-u.ac.jp>
34 .\" Updated 2003-10-15, Kentaro Shirakata <argrath@ub32.org>
35 .\" Updated 2005-11-19, Akihiro MOTOKI <amotoki@dd.iij4u.or.jp>
36 .\"
37 .TH FREXP 3 2008-10-29 "" "Linux Programmer's Manual"
38 .\"O .SH NAME
39 .SH Ì¾Á°
40 .\"O frexp, frexpf, frexpl \- convert floating-point number to fractional
41 .\"O and integral components
42 frexp, frexpf, frexpl \- ÉâÆ°¾®¿ôÅÀ¼Â¿ô¤ò¾®¿ôÀ®Ê¬¤ÈÀ°¿ôÀ®Ê¬¤ËÊÑ´¹¤¹¤ë
43 .\"O .SH SYNOPSIS
44 .SH ½ñ¼°
45 .nf
46 .B #include <math.h>
47 .sp
48 .BI "double frexp(double " x ", int *" exp );
49 .br
50 .BI "float frexpf(float " x ", int *" exp );
51 .br
52 .BI "long double frexpl(long double " x ", int *" exp );
53 .fi
54 .sp
55 .\"O Link with \fI\-lm\fP.
56 \fI\-lm\fP ¤Ç¥ê¥ó¥¯¤¹¤ë¡£
57 .sp
58 .in -4n
59 .\"O Feature Test Macro Requirements for glibc (see
60 .\"O .BR feature_test_macros (7)):
61 glibc ¸þ¤±¤Îµ¡Ç½¸¡ºº¥Þ¥¯¥í¤ÎÍ×·ï
62 .RB ( feature_test_macros (7)
63 »²¾È):
64 .in
65 .sp
66 .ad l
67 .BR frexpf (),
68 .BR frexpl ():
69 _BSD_SOURCE || _SVID_SOURCE || _XOPEN_SOURCE\ >=\ 600 || _ISOC99_SOURCE; or
70 .I cc\ -std=c99
71 .ad b
72 .\"O .SH DESCRIPTION
73 .SH ÀâÌÀ
74 .\"O The
75 .\"O .BR frexp ()
76 .\"O function is used to split the number \fIx\fP into a
77 .\"O normalized fraction and an exponent which is stored in \fIexp\fP.
78 .BR frexp ()
79 ´Ø¿ô¤ÏÉâÆ°¾®¿ôÅÀ¼Â¿ô \fIx\fP ¤òÀµµ¬²½¾®¿ô¤È»Ø¿ô¤Ëʬ²ò¤·¡¢
80 »Ø¿ô¤ò *\fIexp\fP ¤Ë³ÊǼ¤¹¤ë¡£
81 .\"O .SH "RETURN VALUE"
82 .SH ÊÖ¤êÃÍ
83 .\"O The
84 .\"O .BR frexp ()
85 .\"O function returns the normalized fraction.
86 .\"O If the argument \fIx\fP is not zero,
87 .\"O the normalized fraction is \fIx\fP times a power of two,
88 .\"O and its absolute value is always in the range 1/2 (inclusive) to
89 .\"O 1 (exclusive), that is, [0.5,1).
90 .BR frexp ()
91 ´Ø¿ô¤ÏÀµµ¬²½¾®¿ô¤òÊÖ¤¹¡£
92 °ú¿ô \fIx\fP ¤¬¥¼¥í¤Ç¤Ê¤¤¾ì¹ç¡¢¤³¤ÎÀµµ¬²½¾®¿ô¤Ï
93 \fIx\fP ¤Ë 2 ¤ÎÎß¾è¤ò¾è¤¸¤¿¤â¤Î¤Ç¤¢¤ê¡¢¤½¤ÎÀäÂÐÃͤÏ
94 ¾ï¤Ë 1/2 °Ê¾å 1 Ì¤Ëþ¡¢¤Ä¤Þ¤ê [0.5,1) ¤È¤Ê¤ë¡£
95
96 .\"O If \fIx\fP is zero, then the normalized fraction is
97 .\"O zero and zero is stored in \fIexp\fP.
98 \fIx\fP ¤¬¥¼¥í¤Î¾ì¹ç¡¢Àµµ¬²½¾®¿ô¤Ï¥¼¥í¤Ë¤Ê¤ê
99 *\fIexp\fP ¤Ë¤Ï¥¼¥í¤¬³ÊǼ¤µ¤ì¤ë¡£
100
101 .\"O If
102 .\"O .I x
103 .\"O is a NaN,
104 .\"O a NaN is returned, and the value of
105 .\"O .I *exp
106 .\"O is unspecified.
107 .I x
108 ¤¬ NaN ¤Î¾ì¹ç¡¢NaN ¤¬ÊÖ¤µ¤ì¤ë¡£
109 .I *exp
110 ¤ÎÃͤÏÉÔÄê¤Ç¤¢¤ë¡£
111
112 .\"O If
113 .\"O .I x
114 .\"O is positive infinity (negative infinity),
115 .\"O positive infinity (negative infinity) is returned, and the value of
116 .\"O .I *exp
117 .\"O is unspecified.
118 .I x
119 ¤¬Àµ¤Î̵¸ÂÂç (Éé¤Î̵¸ÂÂç) ¤Î¾ì¹ç¡¢
120 Àµ¤Î̵¸ÂÂç (Éé¤Î̵¸ÂÂç) ¤¬ÊÖ¤µ¤ì¤ë¡£
121 .I *exp
122 ¤ÎÃͤÏÉÔÄê¤Ç¤¢¤ë¡£
123 .\"O .SH ERRORS
124 .SH ¥¨¥é¡¼
125 .\"O No errors occur.
126 ¥¨¥é¡¼¤ÏȯÀ¸¤·¤Ê¤¤¡£
127 .\"O .SH "CONFORMING TO"
128 .SH ½àµò
129 C99, POSIX.1-2001.
130 .\"O The variant returning
131 .\"O .I double
132 .\"O also conforms to
133 .\"O SVr4, 4.3BSD, C89.
134 .I double
135 ÈǤδؿô¤Ï SVr4, 4.3BSD, C89 ¤Ë¤â½àµò¤·¤Æ¤¤¤ë¡£
136 .\"O .SH EXAMPLE
137 .SH Îã
138 .\"O The program below produces results such as the following:
139 ¤³¤Î¥×¥í¥°¥é¥à¤ò¼Â¹Ô¤¹¤ë¤È°Ê²¼¤Î¤è¤¦¤Ê·ë²Ì¤È¤Ê¤ë:
140 .sp
141 .nf
142 .in +4n
143 .RB "$" " ./a.out 2560"
144 frexp(2560, &e) = 0.625: 0.625 * 2^12 = 2560
145 .RB "$" " ./a.out \-4"
146 frexp(\-4, &e) = \-0.5: \-0.5 * 2^3 = -4
147 .in
148 .fi
149 .\"O .SS Program source
150 .SS ¥×¥í¥°¥é¥à¤Î¥½¡¼¥¹
151 \&
152 .nf
153 #include <math.h>
154 #include <float.h>
155 #include <stdio.h>
156 #include <stdlib.h>
157
158 int
159 main(int argc, char *argv[])
160 {
161     double x, r;
162     int exp;
163
164     x = strtod(argv[1], NULL);
165     r = frexp(x, &exp);
166
167     printf("frexp(%g, &e) = %g: %g * %d^%d = %g\\n",
168            x, r, r, FLT_RADIX, exp, x);
169     exit(EXIT_SUCCESS);
170 } /* main */
171 .fi
172 .\"O .SH "SEE ALSO"
173 .SH ´ØÏ¢¹àÌÜ
174 .BR ldexp (3),
175 .BR modf (3)