フィルターのクリア

draw the amplitude-frequency characteristic curve of a particular transfer function

1 回表示 (過去 30 日間)
传递函数如下
  2 件のコメント
Aquatris
Aquatris 2024 年 4 月 5 日
So what is your question actually? What did you try and is not working for you?
立达
立达 2024 年 4 月 5 日
I do not know how to use the following transfer function to draw the above graph of amplitude frequency characteristics, what code should be used or how to achieve it, thank you

サインインしてコメントする。

採用された回答

Mathieu NOE
Mathieu NOE 2024 年 4 月 5 日
Simply used your info and coded in matlab
you have now here the right half of the plot , if you need both negative and positive frequency plot (as in your picture), simply mirror the data
Ts = 1;
f = linspace(0,16/(2*Ts),500); % normalized freq vector
s = 1i*(2*pi*f); % s = j*omega
G = (1-exp(-s*Ts))./(s*Ts);
plot(f,abs(G));
xlabel('Normalized Frequency (k/Ts)');
ylabel('|G|');

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAxes Appearance についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by