Error in displaying output

8 次查看(过去 30 天)
I have posted code below
A=[1;2;3;4;0;0;0;0]
for i=1:size(A)
if A(i)==0
A1= 'good'
else
A1= 'bad'
end
end
the output i get is
A1=bad
A1=bad
;
;
;
;
;A1=good
but i need to be dispalyed as
bad
bad
;
;
;
good
i know it is simple ,i tried but could not get the answer..plase help

采纳的回答

Grzegorz Knor
Grzegorz Knor 2011-11-3
A=[1;2;3;4;0;0;0;0];
for i=1:size(A)
if A(i)==0
A1= 'good';
else
A1= 'bad';
end
disp(A1)
end

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Engines & Motors 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by