Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

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.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top