1 .TH LDEXP 3 "January 7, 2010"
4 ldexp, scalbn, scalbnf, scalbln, scalblnf \- compute absolute value
10 double ldexp(double \fIx\fP, int \fIn\fP);
11 double scalbn(double \fIx\fP, int \fIn\fP);
12 float scalbnf(float \fIx\fP, int \fIn\fP);
13 double scalbln(double \fIx\fP, long \fIn\fP);
14 float scalblnf(float \fIx\fP, long \fIn\fP);
17 These functions all compute \fIx\fP * 2^\fIn\fP.
19 These functions all return \fIx\fP * 2^\fIn\fP.