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

 Accepted Answer

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 Comments

Thankyou, much appreciated
My pleasure!
If my Answer helped you solve your problem, please Accept it!
.

Sign in to comment.

More Answers (0)

Categories

Tags

Community Treasure Hunt

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

Start Hunting!