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.

code for circular convolution

Status
Not open for further replies.

gobinaath

Newbie level 1
Joined
Apr 17, 2010
Messages
1
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,286
hi friends can anyone explain circular convolution of two sequences such as x(n)={1,2,4} and h(n)={1,2,3} with simple mat lab program.....if u can help me...[/img][/code]
 

you can use cconv command in matlab for example

>> x1=[ 1 2 4 ]

x1 =

1 2 4

>> x2=[1 2 3 ]

x2 =

1 2 3

>> cconv(x1,x2,3)

ans =

15 16 11
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top