how to label the two y axes of a for example 5*2 subplot?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
how to label the two y axes of a for example 5*2 subplot?
0 comentarios
Respuestas (1)
KSSV
el 17 de Jun. de 2016
You can use label immediately after using subplot(). Eg:
subplot(211)
xlabel('x211')
ylabel('y211')
subplot(212)
xlabel('x212')
ylabel('y212')
0 comentarios
Ver también
Categorías
Más información sobre Subplots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!