Advertisement
Guest User

Untitled

a guest
Nov 21st, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. [s1,f]=audioread('C:\Users\Carlos Cruz\MATLAB\PedroAlves.wav');
  2.  
  3. [s2,f]=audioread('C:\Users\Carlos Cruz\MATLAB\octagon.wav');
  4.  
  5. z=conv(s1,s2);
  6.  
  7. plot(z)
  8. hold on
  9. plot(s1)
  10. hold on
  11. plot(s2)
  12. sound(z,96000)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement