Advertisement
Guest User

Untitled

a guest
Jan 16th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.10 KB | None | 0 0
  1. x = [2 1 0];
  2. y = [1 2 3];
  3.  
  4. Rxx = xcorr(x,x)
  5. Ryy = xcorr(y,y)
  6.  
  7. Rxx =
  8.     0 2 5 2 0
  9.  
  10. Ryy =
  11.     3 8 14 8 3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement