Accepted Answer

madhan ravi
madhan ravi on 23 Nov 2018
Edited: madhan ravi on 23 Nov 2018
see fplot()(link)
Use syms x and use fplot() to plot the function

8 Comments

Hi, im getting error when i write the function.
what is the correct way for matlab to understand it ?
madhan ravi
madhan ravi on 23 Nov 2018
Edited: madhan ravi on 23 Nov 2018
Read the link in the answer I posted and upload the code that you are trying
like this ?
>> syms f(x)
>> f(x)= x^3-x^2+2*x-4;
>> fplot(f)
perfect!
Using the graph, i need to find the solutions for the equation in three decimal places.
but im only getting one line?
syms f(x) y
f(x)= x^3-x^2+2*x-4;
fplot(f)
hold on
fplot(subs(y,0))
sol=vpasolve(f) %you can see two imaginary roots
solutions = roots(sym2poly(f))
thank you very much.
Anytime :)

Sign in to comment.

More Answers (0)

Products

Release

R2018a

Tags

Community Treasure Hunt

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

Start Hunting!