how to label the two y axes of a for example 5*2 subplot?
1 次查看(过去 30 天)
显示 更早的评论
how to label the two y axes of a for example 5*2 subplot?
0 个评论
回答(1 个)
KSSV
2016-6-17
You can use label immediately after using subplot(). Eg:
subplot(211)
xlabel('x211')
ylabel('y211')
subplot(212)
xlabel('x212')
ylabel('y212')
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Subplots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!