MATLAB: I want to take each row in matrix

MATLABmatrix

i have matrix 7*3
i want to take 001 in the first
011and in the second

Best Answer

Trivial with the color operator:
clc
data=[0 0 ;0 0 1;0 0 1;1 1 1;0 1 1;1 0 1;1 1 1];
for n=1:size(data,1)
tmp=data(n,:);
%do something useful with tmp
disp(tmp)
end