预订演示

请注意 : 本帮助页面不适用于最新版本的Enterprise Architect. 最新的帮助文档在这里.

前页 后页

frexp

Extract exponent.

SYNOPSIS:

double frexp(x, expnt);
double x;
int expnt;
y = frexp(x, &expnt);

DESCRIPTION:

frexp() extracts the exponent from x. It returns an integer power of two to expnt and the significand between 0.5 and 1 to y. Thus x = y * 2**expn.