I create graphs with Scilab and I always add the grid, increase font
size etc. Is there a way to modify the default graphic options so that
everything is by default like I want from the start?
Yes there is;
ax=gda(); //get handle on the "default axes" entity
ax.grid=[1 1]*color('gray'); //set the grid
ax.font_size=3; //set the font size
....
Note that there is a small bug with scilab5.x a graphic window opens
while setting the properties of the default axes and it should not...
just close it.
After that all the newly created axes will inherit these properties
Same thing can be done for figure using f=gdf()
This sequence of instruction can be put in your Scilab startup file to
be executed each time Scilab is started..
I didn't know gda.
I put my settings in the /home/<User>/.Scilab/<Scilab-Version>/
scilab.ini file and it works fine.