How to implement step by step co-variance method 4th order: rx (k,l) matrix, a (k), b (k)

Status
Not open for further replies.

ashket

Newbie level 1
Joined
Sep 8, 2015
Messages
1
Helped
0
Reputation
0
Reaction score
0
Trophy points
1
Activity points
4
how to implement step by step covariance method 4th order:rx(k,l) matrix ,a(k),b(k)

Code:
close all
clear all
x=input('Enter x: ')
N=length(x);
for k=0:N-1
    for l=0:N-1
        Rx(k+1,l+1) = 0;
        for n=4:N-1
            Rx(k+1,l+1)=Rx(k+1,l+1)+x(n-l)*conj(x(n-k));        
        end 
    end
end
Y
 
Last edited by a moderator:

Status
Not open for further replies.
Cookies are required to use this site. You must accept them to continue using the site. Learn more…