Man Scilab

frexp
Scilab Function

frexp - dissect floating-point numbers into base 2 exponent and mantissa

Calling Sequence

[f,e]=frexp(x)

Parameters

Description

This function corresponds to the ANSI C function frexp(). Any zeros in x produce f=0 and e=0 .

Examples


[f,e]=frexp([1,%pi,-3,%eps])
 
  

See Also

log ,   hat ,   ieee ,   log2 ,  

Back