Hi there, i just wanted to ask that how can i add info on the graphs plotted. For example in this graph, 1/sigma has been added.
thanks

 採用された回答

Star Strider
Star Strider 2021 年 4 月 13 日

1 投票

Use a text object, or put it in the appropriate axis label:
t = 0:0.1:15*pi;
x = exp(-0.05*t).*cos(t);
y = exp(-0.05*t).*sin(t);
figure
plot(x, y)
axis equal
xlabel('1/\sigma')
text(0, 0, '1/\sigma')
.

2 件のコメント

Dilmeet Babbar
Dilmeet Babbar 2021 年 4 月 14 日
Thankyou, much appreciated
Star Strider
Star Strider 2021 年 4 月 14 日
My pleasure!
If my Answer helped you solve your problem, please Accept it!
.

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

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeStartup and Shutdown についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by