Re: [Scilab-users] rotation of graphics

2013-04-09 Thread Peter Hinow
that works like a charm! Thanks, Antoine! - Original Message - From: "Antoine Monmayrant" To: "International users mailing list for Scilab." Sent: Tuesday, April 9, 2013 4:26:11 PM Subject: Re: [Scilab-users] rotation of graphics Le Mardi 9 Avril 2013 21.19 CEST, Peter Hinow a écrit

Re: [Scilab-users] Possible bug in 5.4.0

2013-04-09 Thread Gary Nelson
A few days ago I sought and received excellent help fixing a problem where SCINOTES was not opening or at least was not visible on my MacBookPro with 10.8.3. The fix was to issue dir SCIHOME deletefile(SCIHOME+'/scinotesConfiguration.xml') and then restart SCILAB. I now see what happens to mak

Re: [Scilab-users] rotation of graphics

2013-04-09 Thread Antoine Monmayrant
Le Mardi 9 Avril 2013 21.19 CEST, Peter Hinow a écrit: > Dear fellow users, > > when I try to rotate a graphic with rotate_axes(), it asks to "Right click > and drag to rotate". What does this mean on a (Mac) mouse which has no > buttons? If I click on it and move, nothing happens. I remem

[Scilab-users] rotation of graphics

2013-04-09 Thread Peter Hinow
Dear fellow users, when I try to rotate a graphic with rotate_axes(), it asks to "Right click and drag to rotate". What does this mean on a (Mac) mouse which has no buttons? If I click on it and move, nothing happens. I remember this used to work in earlier versions. Thank you and best regards

Re: [Scilab-users] Using try and catch

2013-04-09 Thread sgougeon
- Mail original - >De: "laurent berger" >Envoyé: Mardi 9 Avril 2013 17:30:08 >.../... >Scilab console is blocked.You have to used ctrlc C and abort. I do not >understand why >Thanks you for your help This may be connected to the bug http://bugzilla.scilab.org/show_bug.cgi?id=6555, repor

Re: [Scilab-users] Using try and catch

2013-04-09 Thread Antoine Monmayrant
Le Mardi 9 Avril 2013 17.30 CEST, laurent berger a écrit: > Hi, > An example of try and catch for handling execption is > clear > try > f1= 200; > A1=1; > f2=0; > A2= u;//u is undefined > catch > [str,n,line,func]=lasterror(); > disp('ERREUR',str) > end > > Everything is ok but I t

Re: [Scilab-users] Using try and catch

2013-04-09 Thread laurent berger
Hi, An example of try and catch for handling execption is clear try f1= 200; A1=1; f2=0; A2= u;//u is undefined catch [str,n,line,func]=lasterror(); disp('ERREUR',str) end Everything is ok but I try clear try f1= 200; A1=1; f2=0; A2= ;//Nothing on right side of = catch [str,n,line,fu

[Scilab-users] Utilisation de try

2013-04-09 Thread laurent berger
Bonjour, J'utilise la fonction try pour la gestion des erreurs dans ce programme : clear try f1= 200; A1=1; f2=0; A2= u;// Il y a une erreur ici u n'est pas définie catch [str,n,line,func]=lasterror(); disp('ERREUR',str) end Ici tout se passe bien, mais lorsque j'essaye avec : clear try f1

[Scilab-users] Use exemple of generic_block3 in xcos

2013-04-09 Thread pgameiro
Hello, I would like to call a scilab function file myfun.sci from xcos. I know that i can use scifunc_block_m with scilab script code build in but i would like prefer call a external file function. How i can use ou see an exemple to use generic_block3 with xcos. Best regard pgameiro

Re: [Scilab-users] Data Extraction Issue in Scilab

2013-04-09 Thread Dang, Christophe
Hello, De la part de Munian, Devaraj Envoyé : mardi 9 avril 2013 08:30 > When some conditions is met , I want to stop executing the rest of the > code. > [...] > if num_inject==3; > Message={'This script is not suitable for Triple injection'}; > h = msgbox(Message,'Quit'); >uiwait