I am writing a program. I want to display the statement 'job done' as the output in the Command Window. How can I do it?
John Michell answered .
2025-11-20
To display text in the Command Window, use disp or fprintf.
disp('job done')
or
fprintf('job done \n')