Re: [Scilab-users] filled contour plot

2018-01-22 Thread Rafael Guerra
Hi Claus, Yes, you can use different colors for the contours. See sample code here below which displays grey contours but could be adapted to display contours with different colors for each contour level.

Re: [Scilab-users] {EXT} string and excestr

2018-01-22 Thread paul . carrico
Thanks Christophe, It means that some codes I made last few years are not available now under Scilab6.0 :-( A personal reflexion is in progress consequently ... Paul Le 2018-01-22 18:08, Dang Ngoc Chan, Christophe a écrit : > Hello Paul, > >> De la part de Carrico, Paul >> Envoyé : lundi

Re: [Scilab-users] polarplot improvements (pre-SEP) <= Re: Polarplot help

2018-01-22 Thread Claus Futtrup
Hi Samuel It looks like excellent work. I checked my polar plot and the labels are indeed a little bit off (mostly visible with 3-digit numbers, i.e. 120, 150, 180 and so on degrees). It works OK for now. I think your upgraded polarplot should go into the main tree - the plots as seen on the pictu

Re: [Scilab-users] {EXT} string and excestr

2018-01-22 Thread Dang Ngoc Chan, Christophe
Hello Paul, > De la part de Carrico, Paul > Envoyé : lundi 22 janvier 2018 15:09 > > In the past, I used the following structure to develop my code on several > lines (until the release 5.5.2) ; > in the new one, the 3 dots do not work anymore. I also noticed some changes with the continuation d

Re: [Scilab-users] filled contour plot

2018-01-22 Thread Claus Futtrup
Hi Rafael Thank you very much for your kind help. The very detailed contourf works now. Also thanks for the tip with the colorbar - it looks great. I see how re-painting with contour2d brings back the contour lines. With the many colours in the colormap, all lines are blue, which is OK. :-) I gue

Re: [Scilab-users] string and excestr

2018-01-22 Thread Rafael Guerra
Hi Paul, I do not know why your Scilab 5 code does not work in Scilab 6. For long strings, the code might read more clearly by concatenating the different string with + sign as follows: s = "" + ... "printf(""Hello !\n""), " + ... ""; execstr(s) Another example: s = "printf(""command#1

[Scilab-users] string and excestr

2018-01-22 Thread Carrico, Paul
Dear All In the past, I used the following structure to develop my code on several lines (until the release 5.5.2) ; in the new one, the 3 dots do not work anymore. What's now the right sentence ? Thanks for your help Paul s = "... printf(""Hello !\n""), ... "