[Scilab-users] EXCEPTION_ACCESS_VIOLATION error

2012-11-20 Thread Paul Carrico
All, I had the following error : -->i=[1:130321]'; -->size(i) ans = 130321.1. -->j=[1:130321]'; -->size(i.*.ones(j)) Warning !!! Scilab has found a critical error (EXCEPTION_ACCESS_VIOLATION) with "kron" function. Save your data and restart Scilab. ans = 130321

[Scilab-users] Neural network model at SCILAB

2012-11-20 Thread Arif
Dear all, Could you give me like tutorial for make neural network model at SCILAB ? I'm sorry, usually I use Matlab, but I want change to FOSS for my research. Thanks Arif Aditiya Postgraduate Students of School of Computer Science, Jakarta -- ** Best Wishes Arif

Re: [Scilab-users] fscanfMat limitations/failure function

2012-11-20 Thread Paul Carrico
Hummm from memory I needed to install csv_readwrite Atoms package in order to use csvRead enven for the last release ... but maybe I'm mistaken Paul -Message d'origine- De : users-boun...@lists.scilab.org [mailto:users-boun...@lists.scilab.org] De la part de Sylvestre Ledru Envoyé :

Re: [Scilab-users] TR : read_csv issue

2012-11-20 Thread witkatz
you could just try the following: -->fscanfMat('myfile') ans = 1.5.2.369 1.5.2.369 1.5.2.369 1.5.2.369 1.5.2.369 1.5.2.369 1.5.2.369 1.5.2.369 1.5.2.369 regards witkatz

Re: [Scilab-users] fscanfMat limitations/failure function

2012-11-20 Thread Sylvestre Ledru
On 20/11/2012 22:00, Paul Carrico wrote: > You can use csvRead (Atoms package) in order to read huge ascii files … > it’s a more powerfull and a faster alternative to fscanMat … Just to make thing clear, csvRead is included by default in 5.4.0. In previous version, it is csv_read through the ATOMS

Re: [Scilab-users] fscanfMat limitations/failure function

2012-11-20 Thread Paul Carrico
You can use csvRead (Atoms package) in order to read huge ascii files … it’s a more powerfull and a faster alternative to fscanMat … Paul De : users-boun...@lists.scilab.org [mailto:users-boun...@lists.scilab.org] De la part de Gautier, Alexis Envoyé : mardi 20 novembre 2012 21:21 À : users

[Scilab-users] fscanfMat limitations/failure function

2012-11-20 Thread Gautier, Alexis
Hello, I need to post treat data from a data logger (temperatures, strains, etc). Raw data are in a txt file with numbers and Tabulation column separator. File size can goes up to 100 Mb (> 400.000 lines) I use "fscanfMat" function to read the raw data file before post treatment and most of time

Re: [Scilab-users] Vectorization : initiation of an e-mailing titurial

2012-11-20 Thread Samuel Gougeon
Le 20/11/2012 01:46, Mathieu Dubois a écrit : Hello, Thanks Paul for your idea it's always interesting to have recipes. I have briefly look at the code and it seems well structured (I didn't run it). Maybe this document would be more useful on scilab wiki: http://wiki.scilab.org/. That woul

Re: [Scilab-users] Vectorization : how to proceed

2012-11-20 Thread Serge Steer
On 20/11/2012 17:28, Paul Carrico wrote: Finally I think I've found how to proceed .. at the same time I think I understood the use of the dot "." (see after the cos) You are right, but take care that your code will work if and only if at least one of i or j are scalars. If you want your cod

Re: [Scilab-users] question

2012-11-20 Thread Serge Steer
On 20/11/2012 10:44, Emmanuel Bakare wrote: for a systems of five differential equations and the plot has not been visualized.It did not run. What can i do? Bakare Emmanuel Sorry, but it is diffucult to give a precise answer with so few elements. Can you post a code that exhibits the problem you

Re: [Scilab-users] Vectorization : how to proceed

2012-11-20 Thread Paul Carrico
Finally I think I’ve found how to proceed .. at the same time I think I understood the use of the dot “.” (see after the cos) Paul ### function vect_fct=fct_angles(i, j) vect_fct3 = [ (cos(i). * sin(j) ) (-sin(j)) i j]; endfunction

[Scilab-users] Vectorization : how to proceed

2012-11-20 Thread Paul Carrico
Dear All In the above example, how can I proceed to perform the product (see function fct_angles2) ? Indeed, theta are 2 vectors, so no problem for the fct_angles . but in case of product, it's naturally not work !!! what is the correct syntax in order to use vectorization ? Thanks

Re: [Scilab-users] Network Topology

2012-11-20 Thread prateek papriwal
Install Network Topology Generator http://atoms.scilab.org/toolboxes/NTG Try from console ---> atomsInstall('NTG','3.0') On Tue, Nov 20, 2012 at 3:13 PM, Muhammad Lawali wrote: > I am a newbie in scilab 5.4.0. How can I generate network topology for > study of Mobile Ad hoc Network? > > Thanks

Re: [Scilab-users] New to scilab

2012-11-20 Thread prateek papriwal
U can learn more by trying out things. And also u can find offline help/documentation through scilab software by typing help command in console. On Tue, Nov 20, 2012 at 5:12 PM, witkatz wrote: > The best way ist learning by doing. Just install and try out... > You can find an introduction to sc

Re: [Scilab-users] New to scilab

2012-11-20 Thread witkatz
The best way ist learning by doing. Just install and try out... You can find an introduction to scilab and a lot of tutorials and documentations on Scilab Wiki: http://wiki.scilab.org/Tutorials -- View this message in context: http://mailinglists.scilab.org/Scilab-users-New-to-scilab-tp402527

[Scilab-users] New to scilab

2012-11-20 Thread chukonvi...@yahoo.com
Am a new scilab user, how best do i learn fast. ___ users mailing list users@lists.scilab.org http://lists.scilab.org/mailman/listinfo/users

[Scilab-users] Network Topology

2012-11-20 Thread Muhammad Lawali
I am a newbie in scilab 5.4.0. How can I generate network topology for study of Mobile Ad hoc Network? Thanks Lawali Jabaka ___ users mailing list users@lists.scilab.org http://lists.scilab.org/mailman/listinfo/users

Re: [Scilab-users] Custom Blocks in Xcos, linked, not copied into models

2012-11-20 Thread Clément David
Hello, You can define your own block using the xcosPal* functions. A complete toolbox example is provided with Scilab (SCI/contrib/xcos_toolbox_skeleton). As it is your own blocks, you can use references to meta blocks but *take care* such behavior is not the standard Xcos one and may probably co

[Scilab-users] Custom Blocks in Xcos, linked, not copied into models

2012-11-20 Thread Lukas Reichlin
Dear Scilab Community I would like to create custom blocks (out of standard Xcos blocks) in Xcos, save them into a file and add them to the Xcos palette browser. If I use these custom blocks, no copies must be made, only links to the original block in the palette. If I change the block in the p

[Scilab-users] question

2012-11-20 Thread Emmanuel Bakare
Dear Lovely ones, I have been working on Optimal control using Runge kutta for a systems of five differential equations and the plot has not been visualized.It did not run. What can i do? Bakare Emmanuel ___ users mailing list users@lists.scilab.org http: