![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/990175/image.png)
how to plot negative frequency in x axis ?
1 回表示 (過去 30 日間)
古いコメントを表示
how to plot an impulse response ?
0 件のコメント
採用された回答
Sam Chak
2022 年 5 月 7 日
This impulse response can plotted by following the example here:
a = [0 1; -1 -1];
b = [0; 1];
c = [1 0];
sys = ss(a, b, c, 0);
impulse(sys)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/990175/image.png)
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Plot Customization についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!