MATLAB: How to convert number to real number

convert numbermsereal number

Dear all,
My code calculates the MSE as a result
perf =
1.1970e-011
How I convert this type of number to real or some "normal" number?
Thank you for your answers.

Best Answer

This is a real number. Just small enough that scientific notation was employed to display it, to avoid a plethora of zeros. There is NOTHING abnormal about it.
1.1970e-011 == 1.1970 * 10^(-11)
help format
For the second time recently, I find myself amazed that kids no longer learn what scientific notation is in school anymore.