Selecting Every Other Element in a Matrix

597 views (last 30 days)
How can I select every other element in a matrix, such as A=[1 2 8 7 6 5 4 6]?

Accepted Answer

Star Strider
Star Strider on 16 Feb 2015
I’m not certain what you want, so I’ll venture two possibilities:
A=[1 2 8 7 6 5 4 6];
Aodd = A(1:2:end); % Odd-Indexed Elements
Aeven = A(2:2:end); % Even-Indexed Elements
  7 Comments
Star Strider
Star Strider on 8 Feb 2024
It should work the same way for complex vectors, however the problem with that is that it could select only one of a complex pair. One way to correct for that would be to use the conj function to complete the pair after selecting them, then use the cplxpair function.
You would need to decide whether you wanted to select from complex vectors to begin with. The problems that could cause might not be worth the efffort.

Sign in to comment.

More Answers (1)

prashanth GT
prashanth GT on 2 Mar 2020
function y = everyOther(x)
y = x(1:2:length(x));
end

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!