[MATLAB] aide graphique loi binomiale :/

aide graphique loi binomiale :/ [MATLAB] - Divers - Programmation

Marsh Posté le 23-03-2010 à 16:38:35    

Apres des heures passees a essayer de coder un graphique illustrant la loi binomiale, je suis a bout :D
 
pouvez vous trouver ce qui ne va pas dans ce code svp?
 

Code :
  1. function test
  2. clear all
  3. map(1,:) = [rand rand rand];
  4. colormap(map)
  5. theta=.3;
  6. N=1;
  7. nb=10;
  8. R = binomiale(N, nb, 1);
  9. x=-1:1:100;
  10. hold on
  11. bar(x,R);
  12. box off
  13. hold off
  14. function b = binomiale(n, p, x)
  15. b = combinaison(x, n) * p^(x) * (1 - p)^(n - x);
  16. function c = combinaison(k, n)
  17. c = factorielle(n) / (factorielle(k) * factorielle(n - k));
  18. function s = factorielle(n)
  19. s=1;
  20.    for i=1:n
  21.    s = s * i;
  22. end;


merci d'avance :D
ca donne un truc comme ca :  
http://img690.imageshack.us/img690/3272/testnj.png


Message édité par immikimaru le 23-03-2010 à 17:11:38

---------------
Mon Feed-Back  
Reply

Marsh Posté le 23-03-2010 à 16:38:35   

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed