Re: [Scilab-users] How to install modules manually

2015-11-30 Thread Lester Anderson
I forgot to say I am working on Windows: Tried the command: -->atomsInstall('c:\ss20-work\scilab\swt-0.3.0.1-2-src.zip') !--error 1 atomsDESCRIPTIONread: The file "C:\Users\landerso\AppData\Roaming\Scilab\scilab-5.4.1\.atoms\x64\tmp_1448901817\swt\DESCRIPTION" does not exist. at line

Re: [Scilab-users] How to install modules manually

2015-11-30 Thread Antoine Monmayrant
Le 11/30/2015 04:41 PM, Lester Anderson a écrit : Hello, Is there a simple way to install modules for use in Scilab 5 when no direct Internet access. Having dowloaded a module zip file - what is the procedure to install? atomsInstall('very/long/path/to/the/atom/zipfile.zip'); If you are

[Scilab-users] How to install modules manually

2015-11-30 Thread Lester Anderson
Hello, Is there a simple way to install modules for use in Scilab 5 when no direct Internet access. Having dowloaded a module zip file - what is the procedure to install? Thanks Lester ___ users mailing list users@lists.scilab.org

Re: [Scilab-users] Xcos Coselica blocks - Error while running - C compiller

2015-11-30 Thread windkraft
Hello Paul Of course the Xcos example worked not. So I followed several suggestions out of forums and mailing lists concerning this theme. And all error messages which are mentioned above showed up on my w7 computer. Therefore it would be nice to get an information in which constallation it

Re: [Scilab-users] Xcos Coselica blocks - Error while running - C compiller

2015-11-30 Thread Paul Bignier
Hi, Can you run the Modelica demos (Demos->Xcos->Electrical systems), or does it tell you that you lack a compiler? What is the return of 'haveacompiler ' & 'findmsvccompiler

Re: [Scilab-users] getting the first column number of each row

2015-11-30 Thread Jan-Åge Langeland
[a y]=max(int8(x>.5),'c'); JÅ On 30.11.2015 06:54, fujimoto2005 wrote: I want to get the first column number of each row with %T. Now I use loop as follows. x=rand(10,10); for i=1 :10 y(i)=min(find(x(i,:)>0.5); end Is there any way to get y without using 'for end' loop because it

Re: [Scilab-users] getting the first column number of each row

2015-11-30 Thread Pierre-Aimé Agnel
Hi, You can do: x = rand(10, 10); tmp= zeros(10, 10); tmp( find(x > 0.5) ) = 1; [max_tmp, y] = max(tmp, "r"); //y holds the indices of the first row where tmp is at max value Hope this helps Best regards Le 30/11/2015 06:54, fujimoto2005 a écrit : I want to get the first column number of

Re: [Scilab-users] getting the first column number of each row

2015-11-30 Thread fujimoto2005
Hi,Angel and JA I can get the solutions. Thanks a lot for your helps. Best regards. -- View this message in context: http://mailinglists.scilab.org/getting-the-first-column-number-of-each-row-tp4033132p4033136.html Sent from the Scilab users - Mailing Lists Archives mailing list archive at