find roots through iterative method

5 ビュー (過去 30 日間)
paula ro
paula ro 2015 年 4 月 5 日
編集済み: Matt J 2015 年 4 月 9 日
I need to find 3 roots of an equation (e^x=3*x^2 - transcendent equation) through the iteration method in Matlab. What algorithm should I use?

採用された回答

Matt J
Matt J 2015 年 4 月 5 日
編集済み: Matt J 2015 年 4 月 5 日
You can use FZERO, e.g.,
>> f=@(x) exp(x)-3*x.^2
>> [xroot,res]=fzero(f,.1)
You will need to provide an initial guess of each of the three roots, which you can obtain by plotting the function f(x)=e^x-3*x^2
  10 件のコメント
paula ro
paula ro 2015 年 4 月 7 日
Actually my function is 3*x^2-exp(x). I don't understand how do you see all 3 roots. My graph shows one: 3.6-3.8. How exactly do I choose the next interval?
James Tursa
James Tursa 2015 年 4 月 8 日
編集済み: James Tursa 2015 年 4 月 8 日
f = @(x) 3*x.^2-exp(x)
x = -5:.01:5;
plot(x,f(x))
grid on
All three roots are on the plot.

サインインしてコメントする。

その他の回答 (1 件)

paula ro
paula ro 2015 年 4 月 8 日
Ok. But I need an iteration algorithm that finds these 3 roots without me manually extracting the intervals from the plot. The equation has multiple roots. I called the function 3 times with 'Bisection' and it just plots one root 0.9 and displays 'We stopped at interval (a,b)' Is there an algorithm that finds these 3 roots in a function? I only found for polynomials.
  2 件のコメント
James Tursa
James Tursa 2015 年 4 月 8 日
Sounds like you are asking quite a lot from this algorithm. Determining good starting guesses for an arbitrary function is not at all trivial. Even determining just how many roots there are is not trivial. You are certainly not going to get some simple code on this forum that does this for you for an arbitrary function. Seems like there is going to have to be some manual work from you up front for doing this for any particular function you are interested in.
Matt J
Matt J 2015 年 4 月 9 日
編集済み: Matt J 2015 年 4 月 9 日
But I need an iteration algorithm that finds these 3 roots without me manually extracting the intervals from the plot.
You've wasted a lot of time by concealing that requirement. I advised you to find the 3 roots in this manual way in my very first response and in several subsequent comments. You didn't even blink.
As James says, though, there is no method for finding all roots of an arbitrary function. One reason that this is impossible is because some functions have infinite roots, arbitrarily close together, even on a finite interval. Examples are f(x)=0 or f(x)=sin(1/x)

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeCreating, Deleting, and Querying Graphics Objects についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by