How to plot a bode graph
Show older comments
I need to plot a bode graph. I have values for the frequency, magnitude and phase but how do I then put them on a bode diagram?
Answers (3)
Rahul K
on 22 Feb 2017
0 votes
Star Strider
on 22 Feb 2017
Use the subplot function:
figure(1)
subplot(2,1,1)
plot(frequency, magnitude)
grid
xlabel('Frequency (Hz)')
ylabel('Magnitude')
subplot(2,1,2)
plot(frequency, phase)
grid
xlabel('Frequency (Hz)')
ylabel('Phase')
Caitlin Jarvis
on 30 Apr 2017
0 votes
if you have the transfer function than you can enter it in and plot directly from that.
for example for (2s^2+4s+1)/(s+1) where s=jw, you enter the transfer function like this:
G=tf([2,4,1],[1,1])
and then plot using: bode(G)
1 Comment
Star Strider
on 30 Apr 2017
Quoting the original post:
‘I have values for the frequency, magnitude and phase but how do I then put them on a bode diagram?’
Categories
Find more on Classical Control Design 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!