Flexp()

Flexp() ist die inverse function of Frexp(). The function returns the multiplication of the mantisse m by 2, raised to the exponent e.

Syntax: single = Flexp( m as Single, e as word )

Example:

  dim e as word
  dim a as single
  a = 100
  a = Frexp(a,e)  ' result: 0.78125 und in e: 7
  a = Flexp(a,e)  ' result: 100.0

See also: Frexp()