Borrar filtros
Borrar filtros

How to find X Value given Y value and show the point on a plot

9 visualizaciones (últimos 30 días)
I have an semilog plot below.
%
x = 0:1:25;
y = exp(-0.03*x);
figure;
semilogy(x,y);
%
I want to let the program calculate the x value when y=0.5 and indicate this point (x,0.5) on the plot with dashed lines connecting to the two axes. How do I achieve this?

Respuesta aceptada

KSSV
KSSV el 9 de Oct. de 2017
x = 0:1:25;
y = exp(-0.03*x);
figure;
semilogy(x,y);
%
yi = 0.5 ;
xi = interp1(y,x,yi) ;
hold on
semilogy(xi,yi,'*r')
  4 comentarios
Coryn Melissa LLamoza Carabali
Coryn Melissa LLamoza Carabali el 14 de Oct. de 2020
yes! looking for both questions above. Anybody that can help with this ;(

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by