how can i solve this problem give me a useful answer ASAP

1 Ansicht (letzte 30 Tage)
Adnan
Adnan am 22 Okt. 2014
Bearbeitet: Rick Rosson am 22 Okt. 2014
x[n]=-0.75u[n]
h[n]=a.^n.*u[-n-2]
-15<=n<=15 ; a=0.15.

Akzeptierte Antwort

Rick Rosson
Rick Rosson am 22 Okt. 2014
Bearbeitet: Rick Rosson am 22 Okt. 2014
Here's a start:
n = -15:15;
x = zeros(size(n));
x(n>=0) = 0.75;
figure;
stem(n,x);
a = 0.15;
h = zeros(size(n));
h(...) = ...
figure;
stem(n,h);

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by