How to store all loop results? how can i solve this problem??

1 回表示 (過去 30 日間)
arkedia
arkedia 2014 年 12 月 21 日
コメント済み: Stephen23 2014 年 12 月 22 日
i have the following loop
for i=1:4
for j=2:5
if i<j
a=i;
b=j;
ind=[a,b]
end
end
end
how can i store all results for example: a=
1 2
1 3
1 4
1 5
2 3
2 4
2 5
3 4
3 5
4 5
  1 件のコメント
Stephen23
Stephen23 2014 年 12 月 22 日
Don't do this in a loop: see Jan Simon's much improved solution to this problem.

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

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2014 年 12 月 21 日
編集済み: Azzi Abdelmalek 2014 年 12 月 21 日
k=0;
for i=1:4
for j=2:5
if i<j
k=k+1;
ind(k,1:2)=[i,j]
end
end
end
%or
[a,b]=meshgrid(1:4,2:5);
c=[a(:) b(:)];
out=c(diff(c,[],2)>0,:)

その他の回答 (1 件)

Jan
Jan 2014 年 12 月 21 日
What about:
nchoosek(1:5, 2)

カテゴリ

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