How to enter the following functions

2 Ansichten (letzte 30 Tage)
Santiago Rodrigues
Santiago Rodrigues am 6 Okt. 2019
Kommentiert: Stephan am 6 Okt. 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?

Akzeptierte Antwort

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

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Optimization finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by