Bessel function values using starting values
Mostrar comentarios más antiguos
I wish to calculate values of bessel function of first kind using starting values of j(1,1) and
j(1,2).
j(1,2)=0.44005
j(1,1)=0.76519
for n=2:9
j(1,n+1)=2*n*j(1,n)-j(1,n-1);
end

The above code do not give correct or even values close to the exact values.
I dont understand what is wrong with this code.
Respuestas (1)
Yongjian Feng
el 29 de Ag. de 2021
0 votos
matlab has built-in function. Compare against it.
https://www.mathworks.com/help/matlab/ref/besselj.html
2 comentarios
Prajakta Borse
el 30 de Ag. de 2021
Yongjian Feng
el 30 de Ag. de 2021
Of course you can do it yourself. Here the point is that you can compare your result against the answer from the built-in function. This can help you to debug your function.
Categorías
Más información sobre Bessel functions en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!