How to enter the following functions

2 visualizzazioni (ultimi 30 giorni)
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?

Risposta accettata

Stephan
Stephan il 6 Ott 2019
Modificato: Stephan il 6 Ott 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 Commenti
Santiago Rodrigues
Santiago Rodrigues il 6 Ott 2019
Yeah, thanks. I realize I am very dumb. Thank you foe your help
Stephan
Stephan il 6 Ott 2019
Did you notice that you can accept and/or vote for useful answers?

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Optimization in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by