How to enter the following functions

2 visualizaciones (últimos 30 días)
Santiago Rodrigues
Santiago Rodrigues el 6 de Oct. de 2019
Comentada: Stephan el 6 de Oct. de 2019
Hello,
So I need to enter the functions
6cos(theta)=theta/5 in the interval [pi,2pi] and
e^(-0.01x)=7x-2 in the interval [0,3]
The objective is to use the fzero opperator and stuff.
How can I do this?

Respuesta aceptada

Stephan
Stephan el 6 de Oct. de 2019
Editada: Stephan el 6 de Oct. de 2019
you need to rewrite so that the given equations are equal to zero. Then fzero finds x.
fun = @(x) something with x equal to zero
x0 = some starting point
res = fzero(fun,x0)
  3 comentarios
Santiago Rodrigues
Santiago Rodrigues el 6 de Oct. de 2019
Yeah, thanks. I realize I am very dumb. Thank you foe your help
Stephan
Stephan el 6 de Oct. de 2019
Did you notice that you can accept and/or vote for useful answers?

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Optimization en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by