I am trying to build a submatrix by iterating on the rows of the last column in the main matrix which is of size (50000, 21), and if the value inside is greater than 1000 then the whole corresponding y(i,:) row will be added to the new submatrix and add to it more 33 consecutive rows from the main matrix.
I wrote this code below but it is returning only a 33x21 size and I think i am iterating through the j index but not the i index:
for i=1:50000
if y(i,21)>1000
for j=1:33
n(j,:)=y(j+i,:)
j=j+1
end
i=i+1
end
end
What am I doing wrong?