Hi,
I have the following function and I am supposed to find the # of x intersects within the domain of [-20, 5].
3*x^2-1 = exp(-0.5*x)
I have the following commands typed into my script.
func = inline('3*x^2-1-exp(-0.5*x)')
fzero(func,[-20,5])
I am getting only 1 value showing me the x intercept but i am sure there are more than 1 intercepts.
How can i find all the x Intercepts.
PLEASE HELP...!!

댓글 수: 1

Soliver Fusi
Soliver Fusi 2015년 10월 16일
편집: Soliver Fusi 2015년 10월 16일
fsolve: fzero I think only works for one point

댓글을 달려면 로그인하십시오.

 채택된 답변

Walter Roberson
Walter Roberson 2013년 10월 2일

0 개 추천

fzero() only calculates one intercept.
Plot the function and use the result to divide the distance between [-20, 5] into as many sub-ranges as necessary, each containing one intercept. Then fzero() over each of those sub-ranges.

댓글 수: 4

Ravi
Ravi 2013년 10월 2일
I actually figured this out and I have already done it that way using -20,-10 -10,0 0,5. I was wondering if there is one command which will give all three intercepts using one range.
Thank you very much for taking time to respond.
Walter Roberson
Walter Roberson 2013년 10월 2일
No, there is no command that can be given an arbitrary function and will return all of its zeros. There is a contribution from Roger Stafford in the File Exchange that tries to return multiple roots.
Ravi
Ravi 2013년 10월 2일
Thank you very much.
Walter Roberson
Walter Roberson 2013년 10월 2일
Note: returning all zeros of an arbitrary function is a theoretical impossibility.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Programming에 대해 자세히 알아보기

질문:

2013년 10월 1일

편집:

2015년 10월 16일

Community Treasure Hunt

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

Start Hunting!

Translated by