MATLAB: How to limit the number of row

MATLABmatrmatricesmatrixmatrix arraymatrix manipulation

i have data sheet in which data 1100*2 or some time 1060*2 matrix etc there. It is possible to manipulate data so i can get only 1050 data from the starts value so i will get the matrix of 1050*2 always.

Best Answer

data(1:1050,:) % Provided that the data always has atleast 1050 rows
Related Question