How would I write this code using for and while loops/
1 回表示 (過去 30 日間)
古いコメントを表示
4 件のコメント
David Hill
2021 年 2 月 11 日
You could use if statement
for i=1:length(V)
if V(i)
V(i)=0;
else
V(i)=1;
end
end
回答 (1 件)
Sourabh Kondapaka
2021 年 2 月 17 日
編集済み: Sourabh Kondapaka
2021 年 2 月 18 日
For 2b:
V = [1, 1, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 1];
count = 0;
for i = 1 : length(V)
% Below 'if' condition is same as : if V(i) == 0
if ~V(i)
count = count + 1;
% As you want to modify every second instance, i'm just checking the modulus value of count
% with 2.
if mod(count,2) == 0
V(i) = 1;
end
end
end
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!