Advertisement
Guest User

Zad4.1

a guest
Dec 11th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. x=0:0.1:3*pi;
  2. figure, subplot(2,3,1)
  3. plot(x,cos(x).*exp(sin(x)),'-m');
  4. subplot(2,3,2)
  5. plot(x,sin(x).*exp(sin(x)),'--k');
  6. subplot(2,3,3)
  7. plot(x,cosh(x).*exp(cos(x)),'*:b');
  8. subplot(2,3,4)
  9. plot(x,log(1+x).*(log(3+sin(x))),'*:g');
  10. subplot(2,3,5)
  11. plot(x,log(1+x).*sinh(3+sqrt(x)),'-.c');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement