統計
MATLAB Answers
0 質問
1 回答
ランク
of 171,238
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
回答済み
Write a MATLAB program to sketch the following discrete-time signals in the time range of –10 ≤ n ≤ 10. Please label all the graph axes clearly. If the sequence is complex, plot the magnitude and angle separately. i) x(n) = u(n) – u(n – 3)
t = (-10:1:10)'; %%Can change the interval time by replacing 1 with 0.1 step1 = t>=0; %% For u[n] step2 = t>=3; %%For u[n-3...
Write a MATLAB program to sketch the following discrete-time signals in the time range of –10 ≤ n ≤ 10. Please label all the graph axes clearly. If the sequence is complex, plot the magnitude and angle separately. i) x(n) = u(n) – u(n – 3)
t = (-10:1:10)'; %%Can change the interval time by replacing 1 with 0.1 step1 = t>=0; %% For u[n] step2 = t>=3; %%For u[n-3...
約7年 前 | 0

