Mostrar comentarios más antiguos
how to use fzero to solve (exp(-0.2x)*sin(x+2)=0.1)???? should produce 3 answeres
Respuestas (1)
Matt Fig
el 30 de Mzo. de 2011
It would probably help if you read the help for FZERO. Type this at the command line and read it:
help fzero
Once you read that, you can apply this example to get the other roots:
f = @(x) exp(-0.2*x).*sin(x+2) - .1;
fzero(f,-2)
4 comentarios
Dominic
el 30 de Mzo. de 2011
Matt Fig
el 30 de Mzo. de 2011
Then you did NOT read the help file. If you had read the help file, as I suggested, you would know that FZERO returns one root, near the initial guess. So if you need three roots, how many times will you have to call FZERO, and with how many initial guesses?
READ THE HELP.
Dominic
el 30 de Mzo. de 2011
Matt Fig
el 30 de Mzo. de 2011
No problem.
Categorías
Más información sobre Problem-Based Optimization Setup en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!