How do I refer to only the odd-numbered elements in any given vector?

129 vues (au cours des 30 derniers jours)
Emily Hornbuckle
Emily Hornbuckle le 3 Fév 2015
Given a vector I want to write a function that only refers to the odd-numbered elements in that given vector. How would I do this?
  1 commentaire
Stephen23
Stephen23 le 3 Fév 2015
What is an "odd-numbered" element? An element for which the index is odd (keep in mind that MATLAB uses one-based indexing!), or where the element value itself is odd?

Connectez-vous pour commenter.

Réponses (2)

Star Strider
Star Strider le 3 Fév 2015
I’m not certain what you mean by ‘odd-numbered elements’, so here are two possibilities:
v = [10:20];
oddidx = @(v) v(1:2:end); % Addressing Odd-Indexed Elements
oddval = @(v) v(rem(v,2) == 1); % Addressing Odd-Valued Elements
y1 = oddidx(v)
y2 = oddval(v)
produces:
y1 =
10 12 14 16 18 20
y2 =
11 13 15 17 19

MD ZIHADUL ISLAM TUSAR
MD ZIHADUL ISLAM TUSAR le 3 Oct 2022
function y = everyOther(x)
n=length(x);
y=x(1:2:n);
end

Catégories

En savoir plus sur Operators and Elementary Operations dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by