how can i solve this problem give me a useful answer ASAP
1 回表示 (過去 30 日間)
古いコメントを表示
x[n]=-0.75u[n]
h[n]=a.^n.*u[-n-2]
-15<=n<=15 ; a=0.15.
1 件のコメント
採用された回答
Rick Rosson
2014 年 10 月 22 日
編集済み: Rick Rosson
2014 年 10 月 22 日
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);
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Third-Party Cluster Configuration についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!