I have a matrix in MATLAB from which I want to sample every other entry:

a =

     1     5     9    13
     2     6    10    14
     3     7    11    15
     4     8    12    16

And I want:

result =

     1     9    
     3    11

How can I do this without a for loop?

link|improve this question

feedback

3 Answers

up vote 7 down vote accepted

I don't know of a multi-dimensional way to do it automatically, but Matlab's indexing is good enough if you're happy to specify it for each dimension:

a(1:2:end,1:2:end)
link|improve this answer
+1: Somehow I forgot to include the end syntax in my answer. Good catch. ;) – gnovice Nov 24 '09 at 19:15
feedback

This should work for your specific example:

result = a([1 3],[1 3]);

and more generally:

result = a(1:2:size(a,1),1:2:size(a,2));

For more details about indexing in MATLAB, you can check out the documentation here.

link|improve this answer
feedback
samples_x = floor(linspace(1, size(a,1), new_Nx));
samples_y = floor(linspace(1, size(a,2), new_Ny));
new_a = a(samples_x,samples_y)
link|improve this answer
+1 and welcome to Stack Overflow! Your answer could be even more useful if you explained in a few words what your code does. Feel free to use the edit link below your question... – Jonas Heidelberg Nov 2 '11 at 21:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.