Guest User

Untitled

a guest
Oct 18th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. f_noise = 20;
  2. t = linspace(-4,4,2e3);
  3. signal = exp(-t.^2);
  4. noise = 0.25*exp(-t.^2).*sin(2*pi*f_noise*t);
  5. signal_w_noise = signal + noise;
Add Comment
Please, Sign In to add comment