主页C++ Builder 资料C++ Builder 参考手册cmath 数学函数ldexp, ldexpf, ldexpl
C++ Builder 串口控件
C++ Builder 编程技巧
C++ Builder 操作指南
C++ Builder 参考手册
基础知识
cfloat 浮点数
cmath 数学函数
 • acos, acosf, acosl
 • acosh, acoshf, acoshl
 • asin, asinf, asinl
 • asinh, asinhf, asinhl
 • atan, atanf, atanl
 • atan2, atan2f, atan2l
 • atanh, atanhf, atanhl
 • ceil, ceilf, ceill
 • copysign, copysignf, copysignl
 • cos, cosf, cosl
 • cosh, coshf, coshl
 • exp, expf, expl
 • exp2, exp2f, exp2l
 • expm1, expm1f, expm1l
 • fabs, fabsf, fabsl
 • floor, floorf, floorl
 • fmod, fmodf, fmodl
 • frexp, frexpf, frexpl
 • hypot, hypotf, hypotl
 • ldexp, ldexpf, ldexpl
 • log, logf, logl
 • log10, log10f, log10l
 • log1p, log1pf, log1pl
 • log2, log2f, log2l
 • modf, modff, modfl
 • nan, nanf, nanl
 • poly, polyl
 • pow, powf, powl
 • pow10, pow10l
 • round, roundf, roundl
 • sin, sinf, sinl
 • sinh, sinhf, sinhl
 • sqrt, sqrtf, sqrtl
 • tan, tanf, tanl
 • tanh, tanhf, tanhl
 • trunc, truncf, truncl
 • _exception, _exceptionl
 • _matherr, _matherrl
 • HUGE_VAL, HUGE_VALF, HUGE_VALL, _LHUGE_VAL
 • EDOM, ERANGE
 • _mexcep, DOMAIN, SING, OVERFLOW, UNDERFLOW, TLOSS, PLOSS, STACKFAULT
 • M_E, M_LOG2E, M_LOG10E, M_LN2, M_LN10
 • M_PI, M_PI_2, M_PI_4, M_1_PI, M_2_PI, M_1_SQRTPI, M_2_SQRTPI
 • M_SQRT2, M_SQRT_2
 • DOMAIN error 定义域错误
cstdlib 标准库函数
System 字符串
System 日期和时间
System.Math.hpp 数学函数
其他数据类型
VCL 基础类
VCL 应用程序
Pictures 图片
Graphics 绘图
Additional 控件
System 控件
A ~ Z 字母顺序排列的目录
网友留言/技术支持
ldexp, ldexpf, ldexpl - 求用二进位科学计数法表示的数值 x * 2y,已知有效数字 x 和指数 y。

函数原型:

函数原型 C90 C99 C++98 C++11
double ldexp(double x, int y);
float ldexpf(float x, int y);      
long double ldexpl(long double x, int y);      
float ldexp(float x, int y);    
long double ldexp(long double x, int y);    

头文件:

#include <cmath>

命名空间:

std

参数:

x:用二进位科学计数法表示的数据的有效数字,定义域范围为 [-Infinity, +Infinity],并不限于 (-1.0, -0.5] ∪ [0.5, 1.0)
y:指数,2 的 y 次幂 2y

返回值:

返回值:x 乘以 2 的 y 次幂:x * 2y,即 x * exp2(y),值域范围:[-Infinity, +Infinity]
NAN:定义域错误,此时全局变量 errno 的值为 EDOM
计算可能会溢出,此时全局变量 errno 的值为 ERANGE

例:12.34 = 0.77125 × 24
   -8.2 × 10-20 = -0.756316507022092 × 2-63

例子:

void __fastcall TForm1::Button1Click(TObject *Sender)
{
  double Xes[] = { 12.34, -987.65, 5.43e50, -8.2e-20, (double)Infinity, (double)-Infinity };

  UnicodeString s;
  for(size_t i=0; i<sizeof(Xes)/sizeof(Xes[0]); i++)
   {
     double x = Xes[i];
     int y;
     double w = std::frexp(x, &y);

     Memo1->Lines->Add(s.sprintf(L"%g = %g * exp2(%d)", x, w, y));
     Memo1->Lines->Add(s.sprintf(L"%g * exp2(%d) = %g", w, y, w*std::exp2(y)));
     Memo1->Lines->Add(s.sprintf(L"ldexp(%g, %d) = %g", w, y, std::ldexp(w,y)));
     Memo1->Lines->Add(L"");
   }
}

12.34 = 0.77125 * exp2(4) 即 12.34 = 0.77125 × 24
-8.2E-20 = -0.756316507022092 * exp2(-63) 即 -8.2 × 10-20 = -0.756316507022092 × 2-63

兼容性:

函数 \ C++ Builder 编译器 bcc32 clang32 clang64
ldexp
ldexpf   版本 ≥ 10.2 Tokyo Update 1
ldexpl

相关链接:

frexpexp2exppow_matherr浮点数异常处理

◤上一页:hypot, hypotf, hypotl下一页:log, logf, logl

C++ 爱好者 -- Victor Chen 的个人网站 www.cppfans.com 辽ICP备11016859号