Re: [Scilab-users] Running an .sce from the command line. message 9 (scilab: message 11 of 20) of 20)

2016-03-31 Thread scilab . 20 . browseruk
Tim, I've implemented that, and it certainly avoids the singularity; but creates other problems. For example: To choose the colors for successive plots, I set up a list: rgb = list( [0,0,0], [1,0,0], [0,1,0], [0,0,1], ... ); and supplied the color to plot using: for i = 1:size( files,

Re: [Scilab-users] Running an .sce from the command line. message 9 of 20)

2016-03-31 Thread Tim Wescott
plot2d (a, b, logflag = "ln") Look at help for plot2d for details.  Sent from my Verizon Wireless 4G LTE smartphone Original message From: scilab.20.browse...@xoxy.net Date: 03/31/2016 4:38 PM (GMT-07:00) To: users@lists.scilab.org Subject: Re: [Scilab-users]

Re: [Scilab-users] Running an .sce from the command line. message 9 of 20)

2016-03-31 Thread scilab . 20 . browseruk
Samuel, Thanks. I had to do it in two steps: f = gcf(); f.closerequestfcn="exit(0)"; otherwise I get: gcf().closerequestfcn="exit(0)"; !--error 2 Invalid factor. The focus still returns to the command line console pushing the graphics window into the background and

Re: [Scilab-users] Running an .sce from the command line.

2016-03-31 Thread Samuel Gougeon
Hello, Le 31/03/2016 20:35, scilab.20.browse...@xoxy.net a écrit : Hi, I can run my .sce file which produces a graph from a file of data from the (windows) command line using: scilex -f myscript.sce filename.rdat and that works except: Once the plot() executes and the graphic window

Re: [Scilab-users] Running an .sce from the command line.

2016-03-31 Thread Tim Wescott
xend(). I don't know if this is what you want, but the enclosed .sce file generates a graph, writes an image to a .eps file, and then exits. This is how I generate graphs for papers -- it gives me a more maintainable way to replicate the graphs later, or tweak them, or whatever. Note that there

[Scilab-users] Running an .sce from the command line.

2016-03-31 Thread scilab . 20 . browseruk
Hi, I can run my .sce file which produces a graph from a file of data from the (windows) command line using: scilex -f myscript.sce filename.rdat and that works except: Once the plot() executes and the graphic window appears, control and focus returns to the interactive command line.

[Scilab-users] Spinner control with non-linear step?

2016-03-31 Thread scilab . 20 . browseruk
Onward and upward thanks to Antoine. I'd like to have a spinner uicontrol where the steps are non-linear. Eg. logarithmic: -10^3, -10^2, -10^1, -10^0 -10^-1, -10-2, -10^-3, 0, 10^-3, 10^-2, 10^-1, 10^0, 10^1, 10^2, 10^3 Is it possible to supply a function or vector for the SliderStep

[Scilab-users] wiener filter implementation needed!!!!!

2016-03-31 Thread ramyavanditha
HELLO SCILAB USERS, Inbuilt function to implement wiener filtering is required as part of my project.. we had trained downloading AIVP tool.But we didnt get any link to download. please help us to overcome this. -- View this message in context:

Re: [Scilab-users] Invalid index?

2016-03-31 Thread antoine . elias
Hello, Confirmed, failed on Scilab 5.5.2 but works in Scilab 6 beta 1 You can do that to by pass the problem : god.vars = []; for i=1:11 disp(i); god.vars = [god.vars, uicontrol(god.frame1, 'style', 'text', 'string', god.labels(i), 'position', [i*60 - 8 + fudge, 30, 10, 20 ])]; end