grid on in gui
8 views (last 30 days)
Show older comments
HI,
I have six axes in my gui, and I want that everyone of them will be with grid on. simple command grid on, apply only on one of the plots randomly at each run.
how to resolve this?
thanks,
0 Comments
Accepted Answer
Sebastian Holmqvist
on 11 Jul 2012
axes_handle = axes(n)
plot(x, y)
grid(axes_handle, 'on')
0 Comments
More Answers (3)
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!