frexp.3
来自「unix v7是最后一个广泛发布的研究型UNIX版本」· 3 代码 · 共 44 行
3
44 行
.TH FREXP 3.SH NAMEfrexp, ldexp, modf \- split into mantissa and exponent.SH SYNOPSIS.B double frexp(value, eptr).br.B double value;.br.B int *eptr;.PP.B double ldexp(value, exp).br.B double value;.PP.B double modf(value, iptr).br.B double value, *iptr;.SH DESCRIPTION.I Frexpreturns the mantissa of a double .I valueas a double quantity,.I x,of magnitude less than 1and stores an integer .I nsuch that.I value=.IR x *2** nindirectly through .I eptr..PP.I Ldexpreturns the quantity.IR value *2** exp..PP.I Modfreturns the positive fractional part of.I valueand stores the integer part indirectlythrough .I iptr.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?