Re: [Scilab-users] Invalid Index error when using for and select

2013-05-13 Thread Dang, Christophe
Hello, De la part de MattM Envoyé : mardi 7 mai 2013 18:35 for t=0:1:15 select t case 0 B(0)=0 else B(t) = abs(besselj(q,q.*1/15*t)/(q.*1/15*t)); end end In addition to Mathieu's answer, your code performs 16 times a test for only one value.

[Scilab-users] open camera in scilab in ubuntu

2013-05-13 Thread prashantdawar
scilab not able to detect camera in ubuntu 12.04. camera device is located at /dev/video0.although cheese and vlc are able to detect camera ad works fine.what to do... -- View this message in context: http://mailinglists.scilab.org/open-camera-in-scilab-in-ubuntu-tp4026686.html Sent from the

[Scilab-users] Subplot question

2013-05-13 Thread SCHULZ Wolfgang
Hello, I want plot data and divided the plot region with the subplot command in 6 regions (subplot(3,2,X)) but I would like to use the first 2 regions (subplot(3,2,1) and subplot(3,2,2)) for 1 plot. In total I would then have then 5 plots. Is this possible? If yes could someone give me some

Re: [Scilab-users] Subplot question

2013-05-13 Thread Adrien Vogt-Schilb
Hi It is possible, just use subplot(321) subplot(322) subplot(323) subplot(324) and then subplot(313) On 13/05/2013 16:30, SCHULZ Wolfgang wrote: Hello, I want plot data and divided the plot region with the subplot command in 6 regions (subplot(3,2,X)) but I would like to use the first 2

Re: [Scilab-users] Subplot question

2013-05-13 Thread Stéphane Mottelet
Le 13/05/13 16:38, Adrien Vogt-Schilb a écrit : Hi It is possible, just use subplot(321) subplot(322) subplot(323) subplot(324) and then subplot(313) On 13/05/2013 16:30, SCHULZ Wolfgang wrote: Hello, I want plot data and divided the plot region with the subplot command in 6 regions