polynomial definition
古いコメントを表示
how to input polynomial in the form...
(x-a)^n+(x-a)^(n-1).....+(x-a)+c=0
1 件のコメント
John D'Errico
2011 年 3 月 21 日
"Input" a polynomial? What will you do with it? Knowing your goal here is surely the important thing.
回答 (1 件)
Walter Roberson
2011 年 3 月 21 日
0 投票
syms x a c MyPoly = (x-a)^n + (x-a)^(n-1)... +(x-a)+c;
You could follow that with
solve(MyPoly,x)
カテゴリ
ヘルプ センター および File Exchange で Polynomials についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!