Re: [Scilab-users] using csvRead

2016-10-13 Thread CRETE Denis
Hello Philipp, In this case I first attempt to read first (e.g. with “mopen” and “getl”) and then split the strings with “tokens” where the feature of multiple separators exists. Of course you can also use “cvsRead” with one separator and then use “tokens” to finish with the other separators.

Re: [Scilab-users] display grid but not the axis

2016-10-13 Thread Rafael Guerra
Hi Frieder, The code below draws the missing vertical grid when there are no x-axis displayed on the subplot (see picture attached): x1 = (-10:0.5:10)'; y1 = sin(x1); y2= 5*cos(x2); y3= y2/2+y1; clf() subplot(3,1,1) plot2d(x1,y1,color('red'),strf="020"); //no box surrounding plot a=gca();

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

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

2016-10-13 Thread Frieder Nikolaisen
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) subplot(3, 1, 2) co = color("blue"); plot2d(x1, y2, co); b = gca(); b.font_color =

Re: [Scilab-users] inserting data into a bigger matrix

2016-10-13 Thread Rafael Guerra
Hi Denis, Thanks for sharing a neat and mind-blowing solution. It is much faster and with huge memory savings. Kind regards, Rafael From: users [mailto:users-boun...@lists.scilab.org] On Behalf Of CRETE Denis Sent: Wednesday, October 12, 2016 3:32 PM To: Users mailing list for Scilab

Re: [Scilab-users] Fwd: plotxxyyy

2016-10-13 Thread Frieder Nikolaisen
Hi Jens and Samuel, thanks. I am going to include your tips. Best regards Frieder On 2016-10-12 20:15, Jens Simon Strom wrote: > Hallo Frieder, > If you insert > plot(x(M),y(M),'go') after //Writing measurement numbers > > you get circle marks at the selected points to ease their