Re: [Scilab-users] Fwd: Re: Fwd: plotxxyyy

2016-10-15 Thread Samuel Gougeon
Le 13/10/2016 14:05, Frieder Nikolaisen a écrit : Dear community, thank you for you support. I get now wonderful plots. There is still a feature missing: Plot two has not x grid. *How to add a grid without a axis?* (I tried a bit with newaxis... no success) Aaaarr.. I have forgotten this

Re: [Scilab-users] Fwd: Re: Fwd: plotxxyyy

2016-10-13 Thread Jens Simon Strom
Hi FRieder, The plots look really beautiful. Congratulation! Normally you should always have an axis. To produce a grid without 'grid' ('cax.grid=[1 1]', see 'axes_properties', 'grid' in the help pages) you can use x=0:10; y=-5:5; [X,Y]=ndgrid(x,y); xdel(); plot(X,Y) plot(X',Y') Kind