MATLAB: How to pick specific values from a matrix

row operation

Hello,
I Have a matrix of size 778×1500 and I would like to pick 77 rows from among all rows.Which means from every 10 rows I want one row value and the resulted matrix should be 77×1500.Can anyone suggest me how to do matlab code for this operation.Thanking you in advance.

Best Answer

A(10:10:end,:)