home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 5 / DATAFILE_PDCD5.iso / utilities / r / rlab / !RLaB / help_a-k / frexp < prev    next >
Encoding:
Text File  |  1995-04-25  |  384 b   |  18 lines

  1. frexp:
  2.  
  3. Syntax:    frexp ( A )
  4.  
  5. Description:
  6.     
  7.     Frexp returns a list with elements `f' and `e'.
  8.     Frexp splits A into a normalized fraction in the interval:
  9.  
  10.         0.5 <= abs(f) <= 1
  11.  
  12.     which is returned in `f', and a power of 2, which is returned
  13.     in `e'. If A is zero, then both `e' and `f' are zero.
  14.  
  15.     Frexp operates on REAL matrices of any dimension.
  16.  
  17. See Also: log, log10, log2, exp, mod
  18.