How to fined specific Kth values of an vector with n element

6 vues (au cours des 30 derniers jours)
Idris Oussalah
Idris Oussalah le 23 Fév 2020
Supose i have a vector a = [ 2 4 6 8 10] and i want to extract the 1st , 3rd and 5th elements so i want to use a vector b = [1 3 5] and get the answer back as : c = [2 6 10]; how do i do that?
Thanks!

Réponses (1)

Image Analyst
Image Analyst le 23 Fév 2020
Use b as a linear index for a:
a = [ 2 4 6 8 10]
b = [1 3 5]
c = a(b)

Catégories

En savoir plus sur Matrix Indexing 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