how to make a vector z that consists of odd-indexed entries of y (y=[100:1])?

1 Ansicht (letzte 30 Tage)
y=[100:1];
>> z=

Antworten (2)

KSSV
KSSV am 20 Jan. 2022
Bearbeitet: KSSV am 20 Jan. 2022
y = 1:2:100

John D'Errico
John D'Errico am 20 Jan. 2022
Bearbeitet: John D'Errico am 20 Jan. 2022
A very confusing question. I'll take a wild guess. If this does not answer your question, then you need to be FAR more lear.
y = primes(20)
y = 1×8
2 3 5 7 11 13 17 19
Now take the elements of y with odd indexes. That is, start at index 1, then 3, then 5, then 7, etc.
z = y(1:2:end)
z = 1×4
2 5 11 17
But maybe you want to know the indexes of the elements in the arry that are odd numbers. How can I possibly know from your question?
u = find(mod(y,2) == 1)
u = 1×7
2 3 4 5 6 7 8
As you can see, all primes in that list except for the first are odd numbers.

Kategorien

Mehr zu Matrices and Arrays finden Sie in Help Center und File Exchange

Produkte


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by