rewrite the polynomial coefficients

3 ビュー (過去 30 日間)
Jimmy
Jimmy 2015 年 3 月 29 日
コメント済み: Jimmy 2015 年 4 月 7 日
H =
1e-08 s
-------------------------------------------------
s^4 - 0.0002 s^3 - 3.002 s^2 + 2.001 s + 0.001001
i want the polynomial in the denominator to end with +1 instead of +0.001001. is there any easy way to do this with a function?
  3 件のコメント
John D'Errico
John D'Errico 2015 年 3 月 29 日
編集済み: John D'Errico 2015 年 3 月 29 日
More correctly, that would be 999.000999000999..., not 1000.
Star Strider
Star Strider 2015 年 3 月 29 日
I stand corrected!

サインインしてコメントする。

採用された回答

Radha Krishna Maddukuri
Radha Krishna Maddukuri 2015 年 4 月 7 日
Hi Jimmy,
You have to divide the numerator and denominator by the last element in the denominator. The easiest way would be to get the last element using den(end). The end argument will give you the last element in the row irrespective of the length of the array.
>> num = [1e-8 0];
>> den = [1 -0.0002 -3.002 +2.001 +0.001001];
>> poly= tf(num,den);
>> den_new = den/den(end);
>> num_new = num/den(end);
>> poly_new = tf(num_new,den_new);
  1 件のコメント
Jimmy
Jimmy 2015 年 4 月 7 日
Wonderful thanks

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeProgramming についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by