MATLAB: During the execution of matlab programe, a variable is producing output 200.1236 i want to display 200.1236012457

MATLAB

after a decimal point i want 10 digits has to display without fprintf

Best Answer

x = 200.1236012457;
format long g
disp(x)
200.1236012457
Documentation reference: format (link)
Related Question