How to get the coefficients of a fractional polynomial from syms?

조회 수: 18 (최근 30일)
Vinothkumar Sethurasu
Vinothkumar Sethurasu 2021년 7월 29일
답변: Paul 2021년 7월 29일
I have a application which produces fractional polynomial as output as shown below,
syms x,
F=29.0*x*(5.7e-4*x + (5.58e-4*(0.0549*x - 0.0124*x*(0.00449*x - 1.0))*(4.92e-4*x - 1.0))/(0.00101*x - 1.0) - 1.0) - 0.141*x - (1.0*(0.0549*x - 0.0124*x*(0.00449*x - 1.0))*(4.92e-4*x - 1.0))/(0.00101*x - 1.0)
I need to know the co-efficients of the polynomial (F).
  댓글 수: 2
Paul
Paul 2021년 7월 29일
F is a rational function, i.e., the numerator and denominator are polynomials. How do you define the coefficients such a function?
Vinothkumar Sethurasu
Vinothkumar Sethurasu 2021년 7월 29일
If we are going for simplification as kept, F=0
The result will be a polynomila of 'x' with order 6.
I need to find the co-efficients of that polynomial.

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

채택된 답변

Paul
Paul 2021년 7월 29일
If I correctly understand this comment (and I'm not sure I do), it sounds like you just want the coefficients of the numerator of F:
syms x
F=29.0*x*(5.7e-4*x + (5.58e-4*(0.0549*x - 0.0124*x*(0.00449*x - 1.0))*(4.92e-4*x - 1.0))/(0.00101*x - 1.0) - 1.0) - 0.141*x - (1.0*(0.0549*x - 0.0124*x*(0.00449*x - 1.0))*(4.92e-4*x - 1.0))/(0.00101*x - 1.0);
[num,den] = numden(F);
num,den
num = 
den = 
[coefficients,terms] = coeffs(num,'all')
coefficients = 
terms = 
But maybe that's still not the result you're looking for because the coeffiecients are those of a fourth order polynomial, not sixth order.

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by