Create Plot Title of the Plotted Function
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Forrest Graham
am 8 Apr. 2020
Kommentiert: Forrest Graham
am 8 Apr. 2020
How can I make the title of a plot the function I am plotting?
Here is the code trying to use:
x = 0:.01:1;
for i= 1:9
subplot(3,3,i)
y = x.^i;
plot(x, y, 'black')
xlabel('x')
ylabel('y')
% title()???
end
0 Kommentare
Akzeptierte Antwort
Bhaskar R
am 8 Apr. 2020
x = 0:.01:1;
for i= 1:9
subplot(3,3,i)
y = x.^i;
plot(x, y, 'black')
xlabel('x')
ylabel('y')
title(['Title\_' sprintf('%d', i)])
end
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Title finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!