How to extract corresponding values of x-axis based y-axis values.

27 vues (au cours des 30 derniers jours)
AUWAL ABUBAKAR
AUWAL ABUBAKAR le 1 Juil 2020
Commenté : AUWAL ABUBAKAR le 3 Juil 2020
Good day,
Could someone please help me on how to extract corresponding values of x-axis based on y-axis values?
x=[1,3,4,8,3,5,6,4,5,6,7,9]
y=[3,5,6,7,4,5,6,7,8,0,3,4]
I would like to extract the corresponding values of these elements; 5,6,7,4,5,6,7(values from y-axis) in x-axis.
I only know how to find a corresponding single value not multiple values.
Thanks
  6 commentaires
Adam Danz
Adam Danz le 2 Juil 2020
That's clearer. See the answer I added.
AUWAL ABUBAKAR
AUWAL ABUBAKAR le 3 Juil 2020
It works perfectly. Many thanks

Connectez-vous pour commenter.

Réponse acceptée

Adam Danz
Adam Danz le 2 Juil 2020
[z, zIdx] = mink(y,7);
xz = x(zIdx);

Plus de réponses (1)

Mara
Mara le 1 Juil 2020
Modifié(e) : Mara le 1 Juil 2020
maybe use ismember:
idx = ismember(y, [5,6,74,5,67])
xvalues = x(idx)
P.S. sorry for the editing, I now read your problem correctly
  2 commentaires
Adam Danz
Adam Danz le 1 Juil 2020
Modifié(e) : Adam Danz le 1 Juil 2020
The problem with this approach is that the last value of y will also be matched. I believe the OP is trying to isolate only the 7-element segment.
AUWAL ABUBAKAR
AUWAL ABUBAKAR le 1 Juil 2020
Thanks, Mara. It works almost percfectly except for the issue Adam mentioned. The approach also matched the last value of y.
Thank you both once again for your help

Connectez-vous pour commenter.

Community Treasure Hunt

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

Start Hunting!

Translated by