Hoping to find the zero of J0(x) in the interval 0 ≤ x ≤ π, we might try the statement z = fzerotx(@besselj,[0 pi],0) This is legal usage of a function handle, and of fzerotx, but it produces z = 3.1416. Why?
조회 수: 4 (최근 30일)
이전 댓글 표시
if i directly use besselj function, it is display zero at 2.4048
댓글 수: 1
John D'Errico
2017년 9월 27일
편집: John D'Errico
2017년 9월 27일
The question asks you to think. What are the arguments to besselj? If you don't know, why not read the help for besselj? What is fzerotx? (We don't have it, so how can we know?) What do the arguments to fzerotx mean? When you call besselj itself, how did you call it?
답변 (1개)
Eeshan Mitra
2017년 9월 29일
It depends on how you implement the function "fzerotx" as John points out. I'm assuming it is a custom function you have written to calculate zeros for a (possibly nonlinear) function.
x = 2.4048 is infact a zero which can be validated from the plot in the following code:
X = 0:0.1:pi;
J = besselj(0,X);
plot(X,J,'LineWidth',1.5)
axis([0 pi -1 1])
grid on
To find zeros using the MATLAB function fzero instead, enter the following at the MATLAB Command Window: (Use an initial guess of 3.14 to see if it detects a zero there)
>> fzero(@(X) besselj(0,X),3.14)
ans =
2.4048
If you wish to use your custom function to calculate zeros, it might help to set debug the execution using break points.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Pulsed Waveforms에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!