for loop

3 views (last 30 days)
mahaveer hanuman
mahaveer hanuman on 23 Jul 2011
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 Comment
Fangjun Jiang
Fangjun Jiang on 23 Jul 2011
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.

Sign in to comment.

Accepted Answer

Daniel Shub
Daniel Shub on 23 Jul 2011
If you do not have to use a for loop you can just do:
I = G(:, 1:2)
but if you have to use a for loop:
for ii = 1:size(G, 1)
I(ii, 1:2) = G(ii, 1:2);
end

More Answers (1)

Fangjun Jiang
Fangjun Jiang on 23 Jul 2011
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 Comments
Andrei Bobrov
Andrei Bobrov on 23 Jul 2011
for j1 = 1:size(I,2)
I(:,j1) = G(:,j1);
end
Daniel Shub
Daniel Shub on 23 Jul 2011
and I am giving a +1 to Fanqjun since he (assuming he) gave the same answer, and typed faster than me.

Sign in to comment.

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!