How to I find a x value from a given y?
    72 views (last 30 days)
  
       Show older comments
    
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.
0 Comments
Accepted Answer
  Thorsten
      
      
 on 2 Dec 2015
        
      Edited: Thorsten
      
      
 on 2 Dec 2015
  
       x(y==yourvalue)
or if you allow for some tolerance
tol = 1e-6;
x(abs(y-yourvalue) < tol)
4 Comments
  Coryn Melissa LLamoza Carabali
 on 14 Oct 2020
				Hi, have the same problem you have. Were you able to get it to work?
  Suhel Tamboli
 on 9 Mar 2021
				Hello, how can I get y values for a range of x values (from a particular x value to another)? 
More Answers (1)
See Also
Categories
				Find more on Fit Postprocessing in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!




