Does MATLAB allow us to define a polynomial with unknown coeffcients?
4 ビュー (過去 30 日間)
古いコメントを表示
Hi does MATLAB allow us to define a polynomial with unknown coefficients? I know the function poly2sym where we enter the array of coefficients as an input. But if I do not have coefficients? I actually need to define two polynomials with unknown coefficients and then equate their product to 1 to find all the coefficients. I know only one of the coefficients in one of the polynomials.
0 件のコメント
採用された回答
Walter Roberson
2014 年 2 月 5 日
編集済み: Walter Roberson
2014 年 2 月 6 日
syms x
a = sym('a', [3 1]);
a(3)*x^2+a(2)*x+a(1)
4 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Polynomials についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!