How can I find all expressions added to a large formula?

조회 수: 1 (최근 30일)
Hamza Yusuf
Hamza Yusuf 2020년 11월 10일
댓글: Walter Roberson 2020년 11월 10일
In maple there is coeff(p, x^n) where you find all x coefficients to the n-th power in the polynomial p. in Matlab there is a coeffs(p,x)); where you find all the x on polynomial p. How do find a x^n on a polynomial n just like the one on maple. I have tried to make like this
(coeffs(p, x^2))
And for that I get the error.
Error using symengine
Invalid indeterminate.
Error in sym/coeffs (line 60)
cSym = mupadmex('symobj::coeffs',p.s, args{:});
Error in randomfile (line 36)
g = ((coeffs(p, x^2)));
it works when n needs to be one.

채택된 답변

Walter Roberson
Walter Roberson 2020년 11월 10일
Use coeff with two outputs and ismember the desired power in the second output to locate the corresponding coefficients. Or use the 'all' option, in which case you can use indexing to get the coefficients.
Doing the work in a single call without using any true functions is a bit messy.
Possibly there might be a way using feval(symengine)
  댓글 수: 3
Walter Roberson
Walter Roberson 2020년 11월 10일
n = randi([0,4]);
syms x
[c,t] = coeffs(16*x^2 + 19*x + 11)
[found, idx] = ismember(x^n, t) ;
if found
c = c(idx) ;
else
c = sym(0);
end
Walter Roberson
Walter Roberson 2020년 11월 10일
n = randi([0,2]);
syms x
y = 16*x^2 + 19*x + 11;
feval(symengine, 'coeff', y, x, n)
ans = 
16

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Number Theory에 대해 자세히 알아보기

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by