how to write name on plotted graph?
Show older comments
hi all:
i want to plot these three graphs in matlab such that name of each graph will be on graph like below figure.
p=[123 456 344 333 667 899 565 546 688 998 765 467]
T=[30 45 55 66 77 54 32 34 25 70 12 34]
m=[1.00 2.00 2.50 4.21 3.00 2.32 5.43 6.75 6.57 6.45 7.89 9.80]
figure
plot(p)
hold on
plot(T)
hold on
plot(m)
p=power
T=temperature
m=mass
i want to write name on each graph .
thanks
Answers (1)
KSSV
on 25 Oct 2020
Read about legend.
p=[123 456 344 333 667 899 565 546 688 998 765 467]
T=[30 45 55 66 77 54 32 34 25 70 12 34]
m=[1.00 2.00 2.50 4.21 3.00 2.32 5.43 6.75 6.57 6.45 7.89 9.80]
figure
plot(p)
hold on
plot(T)
hold on
plot(m)
legend("Power","Temperature","mass")
9 Comments
Engineer Batoor khan mummand
on 25 Oct 2020
Engineer Batoor khan mummand
on 25 Oct 2020
KSSV
on 25 Oct 2020
p=[123 456 344 333 667 899 565 546 688 998 765 467]
T=[30 45 55 66 77 54 32 34 25 70 12 34]
m=[1.00 2.00 2.50 4.21 3.00 2.32 5.43 6.75 6.57 6.45 7.89 9.80]
figure(1)
plot(p)
title("Power")
figure(2)
plot(T)
title("Temperature")
figure(3)
plot(m)
title("mass")
KSSV
on 25 Oct 2020
p=[123 456 344 333 667 899 565 546 688 998 765 467]
T=[30 45 55 66 77 54 32 34 25 70 12 34]
m=[1.00 2.00 2.50 4.21 3.00 2.32 5.43 6.75 6.57 6.45 7.89 9.80]
power = figure(1) ;
plot(p)
Temperature = figure(2) ;
plot(T)
mass = figure(3)
plot(m)
KSSV
on 25 Oct 2020
Read about text, annotation. Also manually you can go to edit and insert the text box where you can enter the desired text in your desired color.
Engineer Batoor khan mummand
on 25 Oct 2020
Edited: Engineer Batoor khan mummand
on 25 Oct 2020
Image Analyst
on 25 Oct 2020
Thanks for the announcement. I presume you saw KSSV's last comment. So what happened when you looked up the documentation on text and did something like
text(x, y, 'Radiation', 'Color', 'b');
I imagine you got it working since it's pretty easy, but since you did not say so explicitly, nor did you accept the Answer, nor ask a new question, we're still wondering.
Engineer Batoor khan mummand
on 26 Oct 2020
KSSV
on 26 Oct 2020
You have to read the documentation. You can specify the position like up/ down/ center etc....read the doc.
Categories
Find more on Annotations in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
