<div dir="ltr"><div>btw is there a way to see what bibliotecs exist in matlab and does not exist in scilab?<br></div>for example in matlab we have Partial Differential Equation module but not yet in scilab<br><br><br></div>
<div class="gmail_extra"><br><br><div class="gmail_quote">On Tue, May 13, 2014 at 10:16 AM, Dang, Christophe <span dir="ltr"><<a href="mailto:Christophe.Dang@sidel.com" target="_blank">Christophe.Dang@sidel.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hello,<br>
<br>
> De : Patrick Seeboerger<br>
> Envoyé : lundi 12 mai 2014 20:27<br>
<div class="">><br>
> So when I write an argumental function in Matlab I can write it for<br>
> example like:<br>
><br>
> U_q=@(f_u) k_U*2*pi*f_u;<br>
<br>
</div>I'm not a Matlaber, but a quick search on the Mathwork website tells me you're trying to deine an anonymous function, right?<br>
<br>
I don't think such things exist in Scilab.<br>
<br>
You can define the function with<br>
<br>
function [y]=U_q(f_U)<br>
y = k_U*2*%pi*f_U<br>
endfunction<br>
<br>
or with<br>
<br>
deff("y = U_q(f_U)", "y = k_U*2*%pi*f_U")<br>
<br>
Now, if it is important for you to have an anonymous function and not a "normal" function, you should tell us why so we can give you the "right" solution.<br>
<br>
HTH<br>
<span class="HOEnZb"><font color="#888888"><br>
--<br>
Christophe Dang Ngoc Chan<br>
Mechanical calculation engineer<br>
<br>
______________________________________________________________________<br>
<br>
This e-mail may contain confidential and/or privileged information. If you are not the intended recipient (or have received this e-mail in error), please notify the sender immediately and destroy this e-mail. Any unauthorized copying, disclosure or distribution of the material in this e-mail is strictly forbidden.<br>
______________________________________________________________________<br>
_______________________________________________<br>
users mailing list<br>
<a href="mailto:users@lists.scilab.org">users@lists.scilab.org</a><br>
<a href="http://lists.scilab.org/mailman/listinfo/users" target="_blank">http://lists.scilab.org/mailman/listinfo/users</a><br>
</font></span></blockquote></div><br></div>