The default format of output in MatLab is like below:
v =
1.0e+003 *
9.0579
1.2699
9.1338
6.3236
0.9754
What if you want the format to be
v =
9057.9
1269.9
9133.8
6323.6
975.4
The answer is simple. Run the following command in MatLab:
format shortg


