How to solve a trasfer function absolute value whit the tf function command.
11 ビュー (過去 30 日間)
古いコメントを表示
I'm tryng to implement a control system method in matlab but I have a problem in plotting a curve so I don't find a solution to compute the absolute value of a tranfer function declared with the classical command "tf". The function "abs()" is not useful so I ask you which the way to solve the problem. Thank you so much.
5 件のコメント
回答 (2 件)
Azzi Abdelmalek
2013 年 8 月 20 日
Example
N=1;
D=[1 10]
model=tf(N,D) % your transfer function
Now what do you mean by: An absolute value of a transfer function
7 件のコメント
Azzi Abdelmalek
2013 年 8 月 20 日
編集済み: Azzi Abdelmalek
2013 年 8 月 20 日
It's not f=P1/(1-P1) but
f=P1./(1-P1)
plot(w,f)
Negin Abaeian
2015 年 12 月 12 日
Hey Graz.
I can see the post belongs to long ago. But did you ever find the answer to this question? I'm trying to plot the exact same transfer function for an Audio application.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Special Values についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!