draw the amplitude-frequency characteristic curve of a particular transfer function
16 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
立达
am 5 Apr. 2024
Kommentiert: Mathieu NOE
am 16 Apr. 2024
传递函数如下
2 Kommentare
Aquatris
am 5 Apr. 2024
So what is your question actually? What did you try and is not working for you?
Akzeptierte Antwort
Mathieu NOE
am 5 Apr. 2024
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|');
2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Statistics and Machine Learning Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!