How to enter the following functions

2 次查看(过去 30 天)
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?

采纳的回答

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

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Optimization 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by