Why does the matlab command window display everything?
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Imanol Fernandez de arroyabe Zabala
le 31 Déc 2021
Commenté : Sulaymon Eshkabilov
le 31 Déc 2021
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 commentaires
Réponse acceptée
Sulaymon Eshkabilov
le 31 Déc 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 commentaires
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!