How to solve this without syms x

3 views (last 30 days)
Ellen
Ellen on 6 Oct 2022
Edited: Torsten on 6 Oct 2022
If f(x)=x^2/(1+sqrt(x)), find finverse (2)

Accepted Answer

Torsten
Torsten on 6 Oct 2022
Edited: Torsten on 6 Oct 2022
fun = @(x) x.^2./(1+sqrt(x)) ;
sol = fzero(@(x)fun(x)-2,10);
x = 0:0.1:4;
plot(x,fun(x),sol,fun(sol),'o')

More Answers (0)

Categories

Find more on Symbolic Math Toolbox in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!