matlab - Issue in viewing double values -
matlab - Issue in viewing double values -
i having issue viewing double info in matlab console. actually, importing matrix info file. value of particular row , column 1.543
in console when utilize disp(x)
x
matrix imported, showing 1.0e+03 * 0.0002
. however, when seek access particular element in matrix using disp(x(25,25))
25
, 25
row , column numbers showing 1.543
. confused. clarifications. when print whole matrix showing 1.0e+03 * 0.0002
.
the next command should prepare it. display issue, precision of actual values in matrix not affected:
format shortg
matlab floating-point double number-formatting
Comments
Post a Comment