Effacer les filtres
Effacer les filtres

Finding corresponding value of one vector in another vector

1 vue (au cours des 30 derniers jours)
Yamana Uno
Yamana Uno le 13 Nov 2023
Réponse apportée : Voss le 13 Nov 2023
Hi, for example if I have vectors A = [0 1 2 3 4 5 6 7 8 9 10] and B = [0 100 200 300 400 500 600 700 800 900 1000]. and am getting asked to find the value of B when A=7, how do I do that?
Thank you!

Réponse acceptée

Voss
Voss le 13 Nov 2023
A = [0 1 2 3 4 5 6 7 8 9 10];
B = [0 100 200 300 400 500 600 700 800 900 1000];
result = B(A==7)
result = 700

Plus de réponses (0)

Catégories

En savoir plus sur Get Started with MATLAB dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by