Plotting signals discrete with dirac

I am still new in matlab and i am trying to plot those signals ๐‘ฅ1[๐‘›] = 2๐›ฟ[๐‘› + ๐ท1] โˆ’ 3๐›ฟ[๐‘› + ๐ท2] + 3๐›ฟ[๐‘› โˆ’ ๐ท3] + 2๐›ฟ[๐‘› โˆ’ ๐ท4] ๐‘ฅ2[๐‘›] = 2๐‘ข[๐‘› + ๐ท1] โˆ’ 3๐‘ข[๐‘› + ๐ท2] + 3๐‘ข[๐‘› โˆ’ ๐ท3] + 2๐‘ข[๐‘› โˆ’ ๐ท4] ๐‘ฅ3(๐‘ก) = 2๐‘ข(๐‘ก + ๐ท1) โˆ’ 3๐‘ข(๐‘ก + ๐ท2) + 3๐‘ข(๐‘ก โˆ’ ๐ท3) + 2๐‘ข(๐‘ก โˆ’ ๐ท4) where D1=1, D2,=0 D3,=6 D4=0

 Accepted Answer

D = [-1 0 6 8]; % D1, D2 (negative), D3, D4(changed to 8);
x1 = [2 -3 3 2];
subplot(311); stem(D, x1); % for dirac
subplot(312); x2 = [2 -3 3 2]; x2 = cumsum(x2); stairs(D, x2); % for steps
subplot(313); x2 = [2 -3 3 2]; x2 = cumsum(x2); stairs(D, x2);

1 Comment

Please don't do student homework assignments for them. It does not help them, except to teach them there is always someone willing to do their work for them. That is not the purpose of Answers.

Sign in to comment.

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!