I have a 67*1 matrix of 1's and 0. I want that if variable = 1, it should display 'good' else 'nothing'.
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Adhish Aggarwal
am 16 Apr. 2017
Beantwortet: Image Analyst
am 16 Apr. 2017
a = 1 0 0 0 0 0 0 1 0 and so on.
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 16 Apr. 2017
Try this:
for k = 1 : length(a)
if a(k) == 1
fprintf('a(%d) = good\n', k);
else
fprintf('a(%d) = nothing\n', k);
end
end
0 Kommentare
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!