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

2 次查看(过去 30 天)
传递函数如下
  2 个评论
立达
立达 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 CenterFile Exchange 中查找有关 Axes Appearance 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by