I have some numbers, for example:
1.1, 10, 2.2*1.0e+45, 2.2*1.0e-44
I do not know exact what is the next number will be but I want to remove the scientific part of the number, i.e. reduce each number in magnitude to the half-open interval [1,10).The output values have to be like:
1.1, 1, 2.2, 2.2
How to achieve this in MATLAB?