フィルターのクリア

How to get all the coefficients of a polynomial with symbolic coefficients?

3 ビュー (過去 30 日間)
DmArcher
DmArcher 2017 年 4 月 28 日
編集済み: John D'Errico 2017 年 4 月 28 日
I tried this
syms f1 f2 z
a = (f1-f2)*z^2 + f1*z +1
coeffes(a,z,'all')
I expected to get [f1-f2, f1, 1]But it reports error. Does anyone know any other methods to do this?

採用された回答

Star Strider
Star Strider 2017 年 4 月 28 日
The method you are using is correct. Your spelling of the coeffs function is not.
Try this:
syms f1 f2 z
a = (f1-f2)*z^2 + f1*z + 1;
[cfs,trms] = coeffs(a,z,'all')
cfs =
[ f1 - f2, f1, 1]
trms =
[ z^2, z, 1]

その他の回答 (1 件)

John D'Errico
John D'Errico 2017 年 4 月 28 日
編集済み: John D'Errico 2017 年 4 月 28 日
If you type the name of the function properly, it will work.
syms f1 f2 z
a = (f1-f2)*z^2 + f1*z +1;
coeffs(a,z,'all')
ans =
[ f1 - f2, f1, 1]
Based on this and the last question I answered from you, I would suggest learning to be more careful in your typing.

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by