how to label the two y axes of a for example 5*2 subplot?
1 view (last 30 days)
Show older comments
how to label the two y axes of a for example 5*2 subplot?
0 Comments
Answers (1)
KSSV
on 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 Comments
See Also
Categories
Find more on Subplots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!