Advertisement
Guest User

Untitled

a guest
Nov 27th, 2014
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.57 KB | None | 0 0
  1.  
  2. y1=cdf('poisson',serazene_x1,1.5);
  3. y2=cdf('t',serazene_x2,1.9);
  4. y3=cdf('normal',serazene_x3,0.5,1.5);
  5. y4=cdf('gamma',serazene_x4,0.5,3.2);  
  6.  
  7. figure();
  8. subplot(2,2,1);
  9. plot(serazene_x1,y1);xlabel('x');ylabel('y');title('Distribucni funkce poisson');grid on
  10. subplot(2,2,2);
  11. plot(serazene_x2,y2);xlabel('x');ylabel('y');title('Distribucni funkce t');grid on
  12. subplot(2,2,3);
  13. plot(serazene_x3,y3);xlabel('x');ylabel('y');title('Distribucni funkce normal');grid on
  14. subplot(2,2,4);
  15. plot(serazene_x4,y4);xlabel('x');ylabel('y');title('Distribucni funkce gamma');grid on
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement