Bode Plot Transfer Function
조회 수: 3 (최근 30일)
이전 댓글 표시
Hi Friends,
How do I only plot the magnitude of a transfer function something like this.
s^4 + s^2 + 1
------------------------------------------
s^4 + 2 s^3 +3 s^2 + 4 s + 1
I am interesting in seeing the magnitude plot only.Thank you.
댓글 수: 0
채택된 답변
Dimitris Kalogiros
2018년 10월 5일
Here you are:
close all
clearvars
s=tf('s')
H=(s^4+s^2+1)/(s^4+2*s^3+3*s^2+4*s+1)
opts = bodeoptions('cstprefs');
opts.PhaseVisible = 'off';
bodeplot(H, opts );
grid on; zoom on;
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!