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

31 views (last 30 days)
传递函数如下
  2 Comments
立达
立达 on 5 Apr 2024 at 6:01
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

Sign in to comment.

Accepted Answer

Mathieu NOE
Mathieu NOE on 5 Apr 2024 at 8:49
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|');

More Answers (0)

Categories

Find more on Axes Appearance in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!