Azzera filtri
Azzera filtri

Plotting signals discrete with dirac

3 visualizzazioni (ultimi 30 giorni)
karim Soussou
karim Soussou il 22 Giu 2021
Commentato: John D'Errico il 13 Lug 2021
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

Risposta accettata

Chunru
Chunru il 23 Giu 2021
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 Commento
John D'Errico
John D'Errico il 13 Lug 2021
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.

Accedi per commentare.

Piรน risposte (0)

Categorie

Scopri di piรน su MATLAB in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by