Only gives me one critical point how do I get
13 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Lamba Opa
el 25 de En. de 2018
I differentiated it and used solve to get it but I only get one critical point which is zero however when I go on desmos there should be more than one
0 comentarios
Respuesta aceptada
Birdman
el 25 de En. de 2018
You may first see the roots graphically as follows:
t=-50:0.1:105;
plot(t,fun(t),t,fun(t)==0,'b--o')
Then, following lines will give you the roots.
fun=@(t) (2.13)*t.^2-(0.0013)*t.^4+(0.000034)*t.^(4.751);
sol=fzero(fun,x0);
Note that x0 component will be decided according to the graph. You need to write a value where x0 is close to the root of the equation. When you plot, you will decide those values. For instance, to find the value near 63, you may write
sol=fzero(fun,65)
value near 100, you may write
sol=fzero(fun,100);
The principle goes like this.
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!