476179

216lab1part1

Feb 1st, 2023
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. T=1;
  2. Fs = 48000;
  3. N = T*Fs;
  4. t = 0 : 1/Fs : T;
  5. Fn = 1000;
  6. y = sin(Fn*2*pi*t);
  7. plot(t,y);
  8. axis([0 48/48000 -1 1])
Add Comment
Please, Sign In to add comment