How to enter the following functions

2 vues (au cours des 30 derniers jours)
Santiago Rodrigues
Santiago Rodrigues le 6 Oct 2019
Commenté : Stephan le 6 Oct 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?

Réponse acceptée

Stephan
Stephan le 6 Oct 2019
Modifié(e) : Stephan le 6 Oct 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 commentaires
Santiago Rodrigues
Santiago Rodrigues le 6 Oct 2019
Yeah, thanks. I realize I am very dumb. Thank you foe your help
Stephan
Stephan le 6 Oct 2019
Did you notice that you can accept and/or vote for useful answers?

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Optimization dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by