Nitin400

EX4

Aug 3rd, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.17 KB | None | 0 0
  1. clc
  2. close all
  3. clear all
  4. n=0:0.01:31;
  5. x=sin((pi*n)/4);
  6. subplot(3,1,1)
  7. plot(n,x)
  8. n1=0:0.01:31;
  9. y=cos((pi*n)/4);
  10. subplot(3,1,2)
  11. plot(n1,y)
  12. z=x.*y;
  13. subplot(3,1,3)
  14. plot(z)
Add Comment
Please, Sign In to add comment