Convolution of rect (t/2) and δ(t+2) - δ(t+1)

how can i plot this: g(t) = rect(t/2) * [δ(t+2) - δ(t+1)]. As matter of fact, i want to plot the convolution of this functions. But i'm having trouble creating the rect function. If anyone can help me, i would appreciate it very much.

 Accepted Answer

You can make a rect function by making an array of zeros and placing stretch of 1's in it:
rectPulse = zeros(1, 20);
rectPulse(10:15) = 1;
plot(rectPulse, 'bs-');

More Answers (1)

Azzi Abdelmalek
Azzi Abdelmalek on 13 Sep 2013
Edited: Azzi Abdelmalek on 13 Sep 2013
rect=@(t) heaviside(t+1)- heaviside(t-1)

4 Comments

Please mark "Accept" if that answered your question.
it didn't work, i'm missing something.
Ok, what are you missing?

Sign in to comment.

Categories

Find more on Interpolation of 2-D Selections in 3-D Grids in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!