How can I show a certain value in a certain position in the figure?

117 ビュー (過去 30 日間)
Tania Islam
Tania Islam 2019 年 12 月 26 日
コメント済み: Tania Islam 2019 年 12 月 30 日
Hello,
I want to a specific value in the figure. I put the black circle and arrow manually through the figure insert option. But How can I set the value now?
I want the x-axes values that are exactly 90% of each CDF curve.
here I am attaching my matlab figure in jpg mode.

採用された回答

Mark Sherstan
Mark Sherstan 2019 年 12 月 26 日
Here is a quick example. If you do not have an equation you can still solve for the 0.9 value using numerical methods but the key is the text function.
% Some equation
syms x
eq = 0.2*x;
% Solve for x coord
S = vpasolve(eq == 0.9, x)
% Plot
fplot(eq)
% Add labels
hold on
plot(S, 0.9, 'o')
text(S, 0.9, string(S))
hold off
  13 件のコメント
Mark Sherstan
Mark Sherstan 2019 年 12 月 29 日
I had no problem. You can see the plot that I generated a few posts back.
Tania Islam
Tania Islam 2019 年 12 月 30 日
Thank you

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAxis Labels についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by