for loop
古いコメントを表示
i have G={[1 0 1;1 0 0;0 0 1;1 1 1] and out put should be I={[1 0;1 0; 0 0;1 1]} how can i get
using for loop
1 件のコメント
Fangjun Jiang
2011 年 7 月 23 日
Not sure if you understand the meaning of {} in MATLAB. It is used to reference cell array. Your example data indicates no need of it. Please do not use it unnecessarily because it might confuse readers regarding your data structure.
採用された回答
その他の回答 (1 件)
Fangjun Jiang
2011 年 7 月 23 日
Assume the element in I is the first two columns of the element in G.
G=[1 0 1;1 0 0;0 0 1;1 1 1];
[M,N]=size(G);
I=zeros(M,2);
for k=1:size(G,1)
I(k,:)=G(k,1:2);
end
Without for-loop, you can do.
I=G(:,1:2)
2 件のコメント
Andrei Bobrov
2011 年 7 月 23 日
for j1 = 1:size(I,2)
I(:,j1) = G(:,j1);
end
Daniel Shub
2011 年 7 月 23 日
and I am giving a +1 to Fanqjun since he (assuming he) gave the same answer, and typed faster than me.
カテゴリ
ヘルプ センター および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!