|
SCALBN (3) | C library functions | Unix Manual Pages | :man▋
NAME
scalbln, scalblnf, scalblnl, scalbn, scalbnf, scalbnl - adjust exponent
CONTENTS
Library Synopsis Description See Also Standards History
LIBRARY
.Lb libm
SYNOPSIS
.In math.h double scalbln "double x" "long n" float scalblnf "float x" "long n" long double scalblnl "long double x" "long n" double scalbn "double x" "int n" float scalbnf "float x" "int n" long double scalbnl "long double x" "int n"
DESCRIPTION
These routines return x *(2** n) computed by exponent manipulation.
SEE ALSO
ieee(3), math(3)
STANDARDS
HISTORY
|