MATLAB: How to covert this number 1.8287e+03?

convert

for example , 1.8287e+03 into something like 18287000?

Best Answer

I suspect you need to learn about the format function. Note that this function only changes the way the numbers are displayed. The numbers will still be stored exactly the "normal" same way in memory.
My preference is
format longg
Related Question