MATLAB: Data processing

datasampled datatable

Hello, How to sample data for every 40 ms. As my data is quite big (75000ms)I'd like to display only every 40th sample of my data in a form of simple table (1st row :ms), second row:values)
Thanks for your help.

Best Answer

Just do what you did and then say
y = y(1:40:end);
By the way, that (75,000 elements) is a long, long way from being a "quite big" matrix.