Wondering if anyone could help me with this.
For getting the first column x of a matrix A. I use x = A(:,1). Every so often, the matrix A is empty, in which case I would like my column to also be empty. But with Matlab, the code exits with error “Index exceeds matrix dimensions”. Is there a way to prevent it from exiting, and instead give me []?
(I could of course write an “if” statement using isempty(A), but that’s annoying since my code is filled with dozens of places where I may have empty matrices.)
You can use logical indexing:
For non-empty matrices it will be
which returns the first column, and for empty matrices it will be
which returns an empty column matrix.