Why does the matlab command window display everything?
3 views (last 30 days)
Show older comments
For example, when I declare variables and when I'm changing them, for every iteration of this process, it shows the variable in the command window. How do I change this so that it only shows what I tell the program to show?
0 Comments
Accepted Answer
Sulaymon Eshkabilov
on 31 Dec 2021
It can be attained quite easily using semicolon operator ";", e.g.:
% This displays all simulation reults
a = 3
for ii = 1:5
b(ii) = a*ii
end
%% This display what a user pinpoints:
a = 3;
for ii = 1:5
b(ii) = a*ii;
end
fprintf('b(%d) = %d \n', [ii, b(ii)])
% OR
fprintf('b(3) = %d \n', b(3))
2 Comments
More Answers (0)
See Also
Categories
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!