how to write name on plotted graph?
Afficher commentaires plus anciens
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
Réponses (1)
KSSV
le 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 commentaires
Engineer Batoor khan mummand
le 25 Oct 2020
Engineer Batoor khan mummand
le 25 Oct 2020
KSSV
le 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
le 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
le 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
le 25 Oct 2020
Modifié(e) : Engineer Batoor khan mummand
le 25 Oct 2020
Image Analyst
le 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
le 26 Oct 2020
KSSV
le 26 Oct 2020
You have to read the documentation. You can specify the position like up/ down/ center etc....read the doc.
Catégories
En savoir plus sur Annotations dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

