how to label the two y axes of a for example 5*2 subplot?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
how to label the two y axes of a for example 5*2 subplot?
0 Kommentare
Antworten (1)
KSSV
am 17 Jun. 2016
You can use label immediately after using subplot(). Eg:
subplot(211)
xlabel('x211')
ylabel('y211')
subplot(212)
xlabel('x212')
ylabel('y212')
0 Kommentare
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!