convert idtf data format to tf data format

49 ビュー (過去 30 日間)
Cheng an Ku
Cheng an Ku 2019 年 7 月 22 日
編集済み: Devineni Aslesha 2019 年 8 月 7 日
Hi
Can I convert idtf data format to tf data format ?
Andrew

回答 (1 件)

Devineni Aslesha
Devineni Aslesha 2019 年 8 月 2 日
編集済み: Devineni Aslesha 2019 年 8 月 7 日
I am assuming that you generated a transfer function using idtf command as shown below.
num = [1 4];
den = [1 20 5];
sys = idtf(num,den);
The following command can be used to convert idtf data format to tf data format.
[num, den] = tfdata(sys)
As the output is obtained in cell array format, use num{1} to get the numerator coefficients and use den{1} to get the denominator coefficients.
Refer to the below link for more information.

カテゴリ

Help Center および File ExchangeTransfer Function Models についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by