How to extract terms from polynomial in syms
2 ビュー (過去 30 日間)
古いコメントを表示
Dear all, I want to extract terms from polynomial formed using syms. Here is the code
smys x a
y= x^4 + a*x^3 + 2*a^2*x + 5;
now i need to extract the terms x^4 a*x^3 etc into a new variable that can be used at some other place. like
w=x^4;
r=a*x^3;
d=w+r;
Kindly help on this thanks.
2 件のコメント
Amit
2014 年 1 月 2 日
Didn't you answer your own question? Isn't w,r,d are what you want? Am I missing something?
回答 (1 件)
Azzi Abdelmalek
2014 年 1 月 2 日
編集済み: Azzi Abdelmalek
2014 年 1 月 2 日
syms x a
y= x^4 + a*x^3 + 2*a^2*x + 5;
[variable,coefficient]=coeffs(y,x)
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!