Extract values from Nyquist for negative frequencies

조회 수: 8 (최근 30일)
Leo
Leo 2021년 2월 27일
답변: Paul 2021년 2월 27일
Hi,
is there a way of extracting values (Real part & Imaginary part) from the nyquist plot for the negative frequencies? At the moment I am using the following code:
[re,im,w_h] = nyquist(h);
Re = squeeze(re);
Im = squeeze(im);
This code only gives me the Real- and Imaginary part values for positive frequencies. "w_h" is always postivie even though nyquist also has negative frequencies.
Thanks very much for your help!

채택된 답변

Paul
Paul 2021년 2월 27일
The Nyquist plot is symmetric, so the compex cojugate of the output would correspond to the negative frequencies.
[re_pos,im_pos,w_h] = nyquist(h);
re_neg = re_pos;
im_neg = -im_pos;

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Line Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by