How to solve this without syms x

2 visualizaciones (últimos 30 días)
Ellen
Ellen el 6 de Oct. de 2022
Editada: Torsten el 6 de Oct. de 2022
If f(x)=x^2/(1+sqrt(x)), find finverse (2)

Respuesta aceptada

Torsten
Torsten el 6 de Oct. de 2022
Editada: Torsten el 6 de Oct. de 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')

Más respuestas (0)

Categorías

Más información sobre Symbolic Math Toolbox en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by