MATLAB: Limiting range of row in matrix

columnmatrixrow

I have a set of data consisting of 198×81 sets of score data. I would like to take the data only at 50×81. If I type score(:,1:81), it will execute all 198×81 data. can anyone help me?
thank you in advance

Best Answer

score(1:50,:)
Related Question