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

12 ビュー (過去 30 日間)
Matlab_Student
Matlab_Student 2017 年 10 月 8 日
コメント済み: Onu Student 2020 年 11 月 5 日
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?

採用された回答

KSSV
KSSV 2017 年 10 月 9 日
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 件のコメント
Coryn Melissa LLamoza Carabali
Coryn Melissa LLamoza Carabali 2020 年 10 月 14 日
yes! looking for both questions above. Anybody that can help with this ;(
Onu Student
Onu Student 2020 年 11 月 5 日
you can add annotations to plots text(x,y,txt)

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by