How can i extract parameters from a vector at specific values
Afficher commentaires plus anciens
Hi everyone,
i looking for a way to get in a new vectore 'D' , values of a vectore 'A' when the values of B are equal to the values of C
lets say i have A = [1,2,3,4,5,7,8,9,10]
and B =[11,12,13,14,15,16,17,18,19,20] ; both A and B of the same lenght,
i want to compare B with a new vector C = [11,15,20]
that returns values in A when B=C
expected output D=[1,5,10]
2 commentaires
"both A and B of the same lenght, "
Your examples have different lengths:
>> numel(A)
ans = 9
>> numel(B)
ans = 10
Gisela Alejandra Peña Sanchez
le 27 Fév 2020
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Structures dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!