ZERO Pole Block cant change s term value
2 ビュー (過去 30 日間)
古いコメントを表示
How can i use a zero-pole block to input
5/(0.2s+1)
I cant figure out how to give a value of 0.2 to the s term in the pole
0 件のコメント
採用された回答
Mathieu NOE
2020 年 11 月 9 日
hi
5/(0.2s+1) = 25/(s+5)
now you know !
4 件のコメント
Mathieu NOE
2020 年 11 月 9 日
編集済み: Image Analyst
2020 年 11 月 9 日
Well, what are you trying to do ?
The two expressions above are equivalent. It may be easier to see in the second version that this tf has no zero and one pole at -5 rad/s.
So you can do for example :
[NUM,DEN] = zp2tf([],-5,1)
bode(NUM,DEN)
and actually see the roll off above the pole frequency.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で General Applications についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!