How to get the Coeffcient value?

1 view (last 30 days)
Hi!
I have the following polynomial: y = 3*x^2 + 2*x + 4;
Generally, we apply the value of 'x' and get the value of y. Is it possible or how to get the 'x' if i give a certain value of 'y'?
Its obvious to have a range of values for 'x'.
Please advise.

Accepted Answer

Andrei Bobrov
Andrei Bobrov on 15 Jul 2013
y = 4;
xout = roots([3,2,4 - y])
  2 Comments
Sheetansh Kaushik
Sheetansh Kaushik on 15 Jul 2013
thanks mate! could you still explain why its '-y'??
Andrei Bobrov
Andrei Bobrov on 16 Jul 2013
Edited: Andrei Bobrov on 16 Jul 2013
This is solution of the equation y = 3*x^2 + 2*x + 4, here y = 4, i.e.
3*x^2 +2*x + 4 - y = 0
coefficients c of the polynomial:
c = [ 3, 2, 4 - y ]
and him solution
xsol = roots(c) or xsol = roots([ 3, 2, 4 - y ])

Sign in to comment.

More Answers (0)

Categories

Find more on Polynomials in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!