Engineer's World
Pages
Home
Contact
About
Friday, 29 April 2011
Program for convolution of two continuous sequences in MATLAB
Here is the program for convolution of two continuous sequences in MATLAB:
x=[1 0 -1 1 1];
t1=length(x);
h=[1 1 1 1 1];
t2=length(h);
y=conv(x,h);
t=1:1:t1+t2-1;
plot(t,y)
1 comment:
Program to draw a circle in MATLAB « Engineer's World
30 April 2011 at 07:53
[...] Program for convolution of continuous sequences in MATLAB [...]
Reply
Delete
Replies
Reply
Add comment
Load more...
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
[...] Program for convolution of continuous sequences in MATLAB [...]
ReplyDelete