I want to take an Equation as input like ax^2+bx+c =0 , Now I want to take the co-efficient. What will be the code?

조회 수: 6 (최근 30일)
I want to take an Equation as input like ax^2+bx+c =0 , Now I want to take the co-efficient. What will be the code?

답변 (1개)

Karan Gill
Karan Gill 2016년 6월 20일
편집: Karan Gill 2017년 10월 17일
You could try the coeffs command. Note that coeffs accepts polynomial input, not equation input.
>> syms a b c x
poly = a*x^2 + b*x + c;
C = coeffs(poly, x)
C =
[ c, b, a]
You might prefer flipping the order of C to match the order of f.
>> fliplr(C)
ans =
[ a, b, c]
  댓글 수: 1
Sourin Dey
Sourin Dey 2016년 6월 24일
편집: Sourin Dey 2016년 6월 24일
Thanks for your comment, but I want to take the equation as input,It can be any equation . I mean user input . then will take the coefficients from the equation. My purpose is to develop a code for Newton-Raphson Method.

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

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by