Scilab Home page | Wiki | Bug tracker | Forge | Mailing list archives | ATOMS | File exchange
Please login or create an account
Change language to: Français - Português - Русский - 日本語
Scilab Help >> Matlab to Scilab Conversion Tips > Matlab-Scilab equivalents > G > grid (Matlab function)

grid (Matlab function)

Grid lines for two- and three-dimensional plots

Matlab/Scilab equivalent

Matlab Scilab
grid
No equivalent

Particular cases

There is no minor grid in Scilab.

There is no equivalent function for Matlab grid function in Scilab but it has equivalents:

grid on

may be replaced by set(gca(),"grid",[1 1])

grid off

may be replaced by set(gca(),"auto_clear",[-1 -1])

grid minor

can be emulated in Scilab by mtlb_hold but all grids are toggled

grid

can be emulated in Scilab by mtlb_hold

grid(axes_handle,"on")

may be replaced by axes_handle.grid=[1 1]

grid(axes_handle,"off")

may be replaced by axes_handle.grid=[-1 -1]

grid(axes_handle,"minor")

can be emulated in Scilab by mtlb_hold but all grids are toggled

grid(axes_handle)

can be emulated in Scilab by mtlb_hold(axes_handle)

Scilab Enterprises
Copyright (c) 2011-2015 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Jun 15 08:27:54 CEST 2016