Borrar filtros
Borrar filtros

how to label the two y axes of a for example 5*2 subplot?

2 visualizaciones (últimos 30 días)
sH
sH el 17 de Jun. de 2016
Respondida: KSSV el 17 de Jun. de 2016
how to label the two y axes of a for example 5*2 subplot?

Respuestas (1)

KSSV
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')

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by