Re: [Scilab-users] Atoms login

2017-09-26 Thread Samuel Gougeon

Le 25/09/2017 à 23:07, Shamika Mohanan a écrit :

Hello,

Is anyone having trouble logging into their ATOMS account? I'm unable 
to log in or create a new account.


Neither are we. Please have a look at 
http://mailinglists.scilab.org/Scilab-users-Cannot-access-module-at-atom-scilab-tt4036831.html


Regards
Samuel

___
users mailing list
users@lists.scilab.org
http://lists.scilab.org/mailman/listinfo/users


Re: [Scilab-users] Nightly builds outdated

2017-09-26 Thread Paul Bignier

Hi Wolfgang,

We are experiencing trouble with the automated build & upload chain but working 
to fix it.

Regards,

Paul


Paul BIGNIER
Development engineer
---
ESI Group - Scilab
99 rue des Solets - 94513 Rungis, France
Phone: +33.1.41.73.58.77
https://scilab.io
https://esi-group.com



From: users  on behalf of SCHULZ Wolfgang 

Sent: Tuesday, September 26, 2017 9:36 AM
To: Users mailing list for Scilab
Subject: [Scilab-users] Nightly builds outdated


Hello,

is there any reason why the nightly builds are totally outdated?

Thanks

Wolfgang
___
users mailing list
users@lists.scilab.org
http://lists.scilab.org/mailman/listinfo/users


Re: [Scilab-users] update script to Scilab 6.00

2017-09-26 Thread Hermes
Hi, Pierre Payen
When running the script get the following error:

*--> exec('C:\Users\hermesr\Documents\Scilab
Xcos\Animations\penduleUpdated.sce', -1)
at line44 of executed file C:\Users\hermesr\Documents\Scilab
Xcos\Animations\penduleUpdated.sce

Invalid index.
*

And the animation is frozen.

 
Gracias
Hermes



--
Sent from: 
http://mailinglists.scilab.org/Scilab-users-Mailing-Lists-Archives-f2602246.html
___
users mailing list
users@lists.scilab.org
http://lists.scilab.org/mailman/listinfo/users


Re: [Scilab-users] update script to Scilab 6.00

2017-09-26 Thread Pierre Payen
function dy=fon(t,y,g,l) // get rid of global
dy(1) = y(2);
dy(2)=-g/l*sin(y(1));
endfunction
 
teta_init = 45;
teta_init=teta_init/180*%pi;
dteta_init = 0;
g=9.81;
l=1;
t=0:0.1:20;
y=ode([teta_init;dteta_init],0,[t],list(fon,g,l)); // added g,l as parameter
 
//Preparation du graphe
f = gcf(); // on recupere le handle de la fen^etre graphique
f.background = color("white");
//FIN Preparation du graphe

i = 1;
xtitle('', 'm', 'm');  
a = gca(); // On récupère l'objet graphique axes pour modifier les légendes
a.isoview = "on"; 
a.data_bounds = [-2 2 -2 2]; 
a.title.text = "Le pendule";

a.title.font_size = 4;
a.title.foreground = color("white");
a.background = color("white");

xpoly([0  +l*sin(y(1,i))],[0 -l*cos(y(1,i))],"lines",0)
hline= gce(); // On récupère l'objet graphique double-pendule atwood
// pour modifier son aspect cosmétique
hline.thickness = 3;
hline.foreground = color("blue");
 
plot([+l*sin(y(1,i))],[-l*cos(y(1,i))],'o','MarkSize',10,'MarkBackground','b')
h=gce()
hpoint=h.children
xgrid(12)

while i<=length(y)  
  i = i+1;  
  hline.data=[0,0;0+l*sin(y(1,i)),0-l*cos(y(1,i))] // only updating
pendulumm coordinates
  hpoint.data=[+l*sin(y(1,i)),-l*cos(y(1,i))]
end



--
Sent from: 
http://mailinglists.scilab.org/Scilab-users-Mailing-Lists-Archives-f2602246.html
___
users mailing list
users@lists.scilab.org
http://lists.scilab.org/mailman/listinfo/users


Re: [Scilab-users] update script to Scilab 6.00

2017-09-26 Thread Pierre Payen
function dy=fon(t,y,g,l) // get rid of global variable
dy(1) = y(2);
dy(2)=-g/l*sin(y(1));
endfunction
 
teta_init = 45;
teta_init=teta_init/180*%pi;
dteta_init = 0;
g=9.81;
l=1;
t=0:0.1:20;
y=ode([teta_init;dteta_init],0,[t],list(fon,g,l)); // pass g,l as parameter
 
//Preparation du graphe
f = gcf(); // on recupere le handle de la fen^etre graphique
f.background = color("white");
//FIN Preparation du graphe

i = 1;
xtitle('', 'm', 'm');  
a = gca(); // On récupère l'objet graphique axes pour modifier les légendes
a.isoview = "on"; 
a.data_bounds = [-2 2 -2 2]; 
a.title.text = "Le pendule";

a.title.font_size = 4;
a.title.foreground = color("white");
a.background = color("white");

xpoly([0  +l*sin(y(1,i))],[0 -l*cos(y(1,i))],"lines",0)
hline= gce(); // On récupère l'objet graphique double-pendule atwood
// pour modifier son aspect cosmétique
hline.thickness = 3;
hline.foreground = color("blue");
 
plot([+l*sin(y(1,i))],[-l*cos(y(1,i))],'o','MarkSize',10,'MarkBackground','b')
h=gce()
hpoint=h.children
xgrid(12)

while i<=length(y)  
  i = i+1;  
  hline.data=[0,0;0+l*sin(y(1,i)),0-l*cos(y(1,i))] // update coordinate of
the polyline without clearing the figure
  hpoint.data=[+l*sin(y(1,i)),-l*cos(y(1,i))]// same
end



--
Sent from: 
http://mailinglists.scilab.org/Scilab-users-Mailing-Lists-Archives-f2602246.html
___
users mailing list
users@lists.scilab.org
http://lists.scilab.org/mailman/listinfo/users


[Scilab-users] Nightly builds outdated

2017-09-26 Thread SCHULZ Wolfgang
Hello,

is there any reason why the nightly builds are totally outdated?

Thanks

Wolfgang
___
users mailing list
users@lists.scilab.org
http://lists.scilab.org/mailman/listinfo/users


[Scilab-users] Plot Heart Curve in Scilab

2017-09-26 Thread Hermes
Hello,
I've been looking at the forum, how to graph the following function:

x2=[-2:0.01:2];x1=[-1:0.01:1];
function val = Heart(x1, x2) 
val=(1.2*x2-sqrt(abs(x1)))^2+x1^2-1;
endfunction 

And I have not found anything to guide me. Please, could you help me?

 

Gracias



--
Sent from: 
http://mailinglists.scilab.org/Scilab-users-Mailing-Lists-Archives-f2602246.html
___
users mailing list
users@lists.scilab.org
http://lists.scilab.org/mailman/listinfo/users