In GNU Octave, I want to be able to remove specific columns from a matrix. In the interest of generality. I also want to be able to remove specific rows from a matrix.
The reverse method of doing this:
columns_you_want_to_keep = [1, 3, 5] new_matrix = my_matrix(:,columns_you_want_to_keep)