Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
impz(b、a)コマンドを使用してデジタルシステムのインパルス応答をプロットし、プロットに(-std、std)の間の領域に色を付けたいと思います。-stdとstdの値を示す行をすでに追加しましたが、その方法がわかりません。手伝って頂けますか?グラフィカルに実行できますか?
EitanTが上記で提案したように:
[h, t] = impz(b, a); figure() plot(t,h) hold on ind=[find(t==-std):find(t==std)] fill(t(ind),h(ind))