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?

Antworten (1)

Karan Gill
Karan Gill am 20 Jun. 2016
Bearbeitet: Karan Gill am 17 Okt. 2017
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 Kommentar

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.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Numerical Integration and Differential Equations finden Sie in Hilfe-Center und File Exchange

Gefragt:

am 20 Jun. 2016

Bearbeitet:

am 17 Okt. 2017

Community Treasure Hunt

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

Start Hunting!

Translated by