subplot label problem invisible
9 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I have very simple question. Assume I have a,b,c,t
subplot(3,5,1);
plot(t, a);
title('Agent-1 Error of Target-1')
ylabel('X Dimension Error');
xlabel('Time');
subplot(3,5,6);
ylabel('Y Dimension Error');
xlabel('Time');
plot(t, b);
subplot(3,5,11);
ylabel('Z Dimension Error');
xlabel('Time');
plot(t, c);
When I call the function, subplot of 6, 11 labels are gone at the end. I dont understand why? subplot 1 shows its labels but not the rest
0 Kommentare
Akzeptierte Antwort
Azzi Abdelmalek
am 13 Aug. 2012
Bearbeitet: Azzi Abdelmalek
am 13 Aug. 2012
you must start with plot
subplot(3,5,1);
plot(t, a);
title('Agent-1 Error of Target-1')
ylabel('X Dimension Error');
xlabel('Time');
subplot(3,5,6);
plot(t, b);
ylabel('Y Dimension Error');
xlabel('Time');
subplot(3,5,11);
plot(t, c);
ylabel('Z Dimension Error');
xlabel('Time');
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Subplots 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!