Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
How can I have the title on a graph change depending on whats in the graph?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I have created 7 graphs, all of them are comparing different things, but the y axis is the same in all. I have a working for loop generating the graphs. I was wondering if I can add the title into the loop so it creates the title based on what is in the x axis of the plot. The code below plots them perfectly, I am just looking for a way to add a unique title to each.
for i = 1:numel(xcardata)
figure(i)
plot(xcardata{i}, ycardata, 'ob')
end
0 Kommentare
Antworten (1)
Star Strider
am 7 Nov. 2020
Example —
x = 1:0.1:5;
for k = 1:5
y = x.^k;
figure
plot(x, y)
title(sprintf('y = x^{%d}',k))
end
.
2 Kommentare
Star Strider
am 8 Nov. 2020
Choose the text you want in the title sprintf call, then use '%s' instead to write character vectors , i.e. words.
Diese Frage ist geschlossen.
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!