필터 지우기
필터 지우기

How to get frequency resolution from bode plot or transfer function?

조회 수: 6 (최근 30일)
Zhe Liu
Zhe Liu 2016년 7월 18일
댓글: Star Strider 2016년 7월 19일
I want to know the frequency resolution from bode plot I estimate by using system identification toolbox. But how?

채택된 답변

Star Strider
Star Strider 2016년 7월 19일
You have to ask it to return them as outputs:
[mag,phase,wout] = bode(sys)
In this example, ‘wout’ are, from the documentation:
  • Response frequencies, returned as a row vector of frequency points. Frequency values are in radians per TimeUnit, where TimeUnit is the value of the TimeUnit property of sys.
  댓글 수: 2
Zhe Liu
Zhe Liu 2016년 7월 19일
should frequency resolution be a value not a vector? Like fourier where resolution is just 1/window but in bode I really don't know....may be calculated by time step and transfer function?
Star Strider
Star Strider 2016년 7월 19일
If you use a different syntax, the frequencies can be a vector argument (here ‘w’), giving the magnitude and phase as outputs:
[mag,phase] = bode(sys,w);
The frequency values are in radians per TimeUnit.
See the documentation for bode for details.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Linear Model Identification에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by