How to extract phase information from freqs?

1 visualización (últimos 30 días)
Luiz Fernando de Frias
Luiz Fernando de Frias el 3 de Mzo. de 2016
Editada: Rick Rosson el 4 de Mzo. de 2016
I'm plotting using this:
freqs(butter_tf_num,butter_tf_den, scale)
But I want to adjust the X axis to another unit and set limits. So I do:
[H,W] = freqs(butter_tf_num,butter_tf_den, scale);
Freq_Hz = W(:)/2/pi;
subplot(3,2,1)
% Magnitude
plot(Freq_Hz, abs(H))
subplot(3,2,2)
% Phase
plot(Freq_Hz, atand(imag(H)./real(H)))
axis([600 1000 -200 200])
But the result is different... Why?

Respuesta aceptada

Rick Rosson
Rick Rosson el 3 de Mzo. de 2016
Editada: Rick Rosson el 4 de Mzo. de 2016
Instead of
atand(imag(H)./real(H))
please try using
angle(H)*180/pi

Más respuestas (0)

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by