MATLAB: Matrix reshaping and combination

matrix reshape

cd(1:24:end,4)
Suppose the above where cd is a matrix variable. I want the fourth column to be extracted in such a way that I get not the first of every 24 values but the last of every 24 values. How can I do this?

Best Answer

cd(24:24:end,4)