how to add label to diagram plotted using plot function?
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
chandra Naik
am 13 Feb. 2019
Kommentiert: chandra Naik
am 14 Feb. 2019
how to add label to diagram plotted using plot function?
2 Kommentare
Akzeptierte Antwort
Preethi
am 13 Feb. 2019
hi,
hope this helps
xlabel('X axis'); % to label X axis
Ylabel('Value'); % to label Y axis
title('Name'); %to provide title to your plot
3 Kommentare
Preethi
am 14 Feb. 2019
check this
for circle
plot(x,y);
c = cellstr(b);%b contains the characters you want to print in plot
dx = 0.1; dy = 0.1;
text(x+dx, y+dy, c);
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!