Re: [Scilab-users] Help about Scilab

2015-02-04 Thread Serge Steer
please see http://svn.forge.scilab.org/docintrodiscrprobas/en_US/introdiscreteprobas/scripts/nchoosek.sci Serge Steer - Mail original - De: Paweł Postek post...@o2.pl À: users@lists.scilab.org Envoyé: Mardi 3 Février 2015 19:35:02 Objet: [Scilab-users] Help about Scilab Hello.

[Scilab-users] Help about Scilab

2015-02-04 Thread Paweł Postek
Hello. My name is Pawel and i have a big problem. I have a code in matlab witch use nchoosek function. for n = 5 for m = (1:n) c = nchoosek (n,m) end end I need to convert this code to Scilab. I'm trying to do this, but I fail. If anyone could help me? Thank

Re: [Scilab-users] Help about Scilab

2015-02-04 Thread Samuel Gougeon
Hello, Le 04/02/2015 12:07, Pierre-Aimé Agnel a écrit : Hello, You might be interested in installing the specfun http://atoms.scilab.org/toolboxes/specfun ATOMS module( atomsInstall('specfun') The implementation given by Serge is inside the module and can be called with n = 5; m = 0:n; c

Re: [Scilab-users] Help about Scilab

2015-02-04 Thread Pierre-Aimé Agnel
Hello, You might be interested in installing the specfun http://atoms.scilab.org/toolboxes/specfun ATOMS module( atomsInstall('specfun') The implementation given by Serge is inside the module and can be called with n = 5; m = 0:n; c = specfun_nchoosek(n, m) You will obtain all the