For loop execution problem in matlab

1 回表示 (過去 30 日間)
Aftab Ahmed Khan
Aftab Ahmed Khan 2014 年 6 月 12 日
コメント済み: José-Luis 2014 年 6 月 12 日
Hi everyone, i want to do this, like for i=1:10, this function changes 0 to 1 on every first 10 loop iteration which is working in this program, but when the 11 iteration executes then the first 1 in the array changes back to 0 and when the 20th iteration executes i again get all the values equal to 0. Thank you.
clear all;
clc;
A = zeros(1,10);
for i = 1:20
if i<=length(A)
A(i) = 1;
elseif i>length(A) %%%this statement doesn't work
A(i) = 0;
end
end

採用された回答

José-Luis
José-Luis 2014 年 6 月 12 日
編集済み: José-Luis 2014 年 6 月 12 日
A = zeros(1,10);
for ii = 1:20
if i<=length(A)
A(ii) = 1;
elseif i>length(A)
A(ii) = 0;
A(ii - 10) = 0;
end
end
  2 件のコメント
Aftab Ahmed Khan
Aftab Ahmed Khan 2014 年 6 月 12 日
Hi Jose, Thanks. Just to let you know that this is also a part of my yesterday question which i managed to solve somehow, thanks to you guys as well.
José-Luis
José-Luis 2014 年 6 月 12 日
My pleasure.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by