Azzera filtri
Azzera filtri

How to I find a x value from a given y?

142 visualizzazioni (ultimi 30 giorni)
I have plotted a Matlab graph using a long matrix. I am looking to find the code which gives me an x value from the line graph given a y.

Risposta accettata

Thorsten
Thorsten il 2 Dic 2015
Modificato: Thorsten il 2 Dic 2015
x(y==yourvalue)
or if you allow for some tolerance
tol = 1e-6;
x(abs(y-yourvalue) < tol)
  4 Commenti
Coryn Melissa LLamoza Carabali
Hi, have the same problem you have. Were you able to get it to work?
Suhel Tamboli
Suhel Tamboli il 9 Mar 2021
Hello, how can I get y values for a range of x values (from a particular x value to another)?

Accedi per commentare.

Più risposte (1)

Salih CIL
Salih CIL il 11 Dic 2018
Thx it is working :)

Categorie

Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by