how to label the two y axes of a for example 5*2 subplot?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
how to label the two y axes of a for example 5*2 subplot?
0 Commenti
Risposte (1)
KSSV
il 17 Giu 2016
You can use label immediately after using subplot(). Eg:
subplot(211)
xlabel('x211')
ylabel('y211')
subplot(212)
xlabel('x212')
ylabel('y212')
0 Commenti
Vedere anche
Categorie
Scopri di più su Subplots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!