On Mar 5, 11:00 pm, "Akeem Wale" <
abu...@gmail.com> wrote:
> Dear users
>
> Can anyone guide me on how to select every nth element from a vector matrix using MATLAB codes?
-------------------------------------------------------------------------------------------------------------
Akeem Wale:
A small adaptation from my answer to your similar 2D array question
gives this:
submatrix = fullmatrix(startingIndex : n : end);
"end" is a keyword - it means length(fullMatrix) for whatever matrix
you're indexing. In other words, it changes its value depending on
what matrix you're working on.
ImageAnalyst