Library: | multi |
See also: | rint |
Macro: | floatinf | |
Description: | provides information about real numbers within the interval [.5,0) in the form of x=a*10^b, b is bounded by -20 |
Usage: | {a,b} = floatinf(x) | |
Input: | ||
x | (1x1) real value | |
Output: | ||
a | (1x1) real value, element of the interval [+inf,.5) | |
b | (1x1) integer, power of 10 |
I {a,b}=floatinf(.00123) II {a,b}=floatinf(1.23*10^(-23))
I a = 1.23 b = -3 II a = 0.00123 b = -20
Library: | multi |
See also: | rint |