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={1,2,4} and h={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

Cookies are required to use this site. You must accept them to continue using the site. Learn more…