grid on in gui

조회 수: 8 (최근 30일)
Michael Adelman
Michael Adelman 2012년 7월 11일
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,

채택된 답변

Sebastian Holmqvist
Sebastian Holmqvist 2012년 7월 11일
axes_handle = axes(n)
plot(x, y)
grid(axes_handle, 'on')

추가 답변 (3개)

Ilham Hardy
Ilham Hardy 2012년 7월 11일
Use grid on after every plot (/subplot) command.

Michael Adelman
Michael Adelman 2012년 7월 11일
Tried that, it doesn't help.

Michael Adelman
Michael Adelman 2012년 7월 11일
Thank you Sebastian, it helped.
  댓글 수: 1
Sebastian Holmqvist
Sebastian Holmqvist 2012년 7월 12일
Glad to help!

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Subplots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by