matlab returns values as 1.0e+04 * something, how to get the final value?

matlab

Solution

Change the format. Try

 format long

and then check your output. There are other format options you can use if this is not what you want http://www.mathworks.co.uk/help/techdoc/ref/format.html

Problem

Matlab returns values as 1.0e+04 * [matrix here] some of the values inside the matrix are 0.1981, 0.5765, etc... How to get the answer in this representation 1981, 5765, etc... instead of 1.e+04 *

Original source