필터 지우기
필터 지우기

Grpdelay function with plotting for a transfer function

조회 수: 3 (최근 30일)
Jackson
Jackson 2020년 10월 4일
댓글: Jackson 2020년 10월 8일
I am trying to find the grpdelay of a transfer function and plot it but am not sure how to use the function in MATLAB.
The transfer function I have is
H = tf([0.25 -0.1045 1],[1 -0.1045 0.25],0.1;
and this is what im trying to do.

답변 (1개)

Harsh Parikh
Harsh Parikh 2020년 10월 7일
Hi,
'tf()' function has the following prototype: (https://www.mathworks.com/help/control/ref/tf.html)
sys_obj = tf(<Numerator_coefficients>,<Denominator_Coefficients>,Sample_time)
Thus, your first vector ([0.25 -0.1045 1]) is a vector of coefficients for the Numerator part and the second vector ([1 -0.1045 0.25]) will be a vector of coefficients for the denominator part.
'grpdelay()' function has the following prototype: (https://www.mathworks.com/help/signal/ref/grpdelay.html)
[Group_delay, angular_freq] = grpdelay(<Numerator_coefficients>, <Denominator_Coefficients>)
After having all this information, you can use the 'grpdelay()' as follows:
[gd,w] = grpdelay(First_vector, second_vector)
I got the following graph for the given input:

카테고리

Help CenterFile Exchange에서 Digital Filter Analysis에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by