MATLAB: Reading particular rows from excel

200 th term

I have a around 2000 rows of datas in excel. How can i read only 0th trem,200th term, 400th term, etc till last.thanks in advance

Best Answer

[a,b,c]=xlsread('file','A200:Y200')
Related Question