I'm trying to use MATLAB Bessel function of zeroth order ---> besselj(0,Z)
. What I noticed is: it can handle real part of nth power (say e100
) but not imaginary part if it is greater than (e2
) in a complex argument.
Eg: (2+2*i)
complex argument it will handle. But it can't handle (20000+20000*i)----->
gives answer as "infinity".
this is what i get :
besselj(0,2e4+i*2e4)
ans =
Inf
Can some one explain this? Is there any limit of the power in the imaginary part?