Public Function BesselIE( _ ByVal vX As Variant _ , ByVal vAlpha As Variant _ ) As Variant
BesselIE(.5, 0) = 0.64503527044915 BesselIE(.5, 1) = 0.156420803184872 BesselIE(.5, 1.5) = 5.84716625831358E-02 BesselIE(.5, 2) = 1.93520577096633E-02 BesselIE(.5, 0) = BesselI0E(.5) BesselIE(.5, 1) = BesselI1E(.5)See also:
BesselI0E Function BesselI1E Function BesselI Function BesselKE Function DBESI SubroutinevX: Function returns Null if vX is Null or cannot be fixed up to a Double precision floating point number.
BesselIE computes a one member sequence of I Bessel functions I/sub(ALPHA)/(X), for nonnegative ALPHA and X. A combination of the power series, the asymptotic expansion for X to infinity, and the uniform asymptotic expansion for NU to infinity are applied over subdivisions of the (NU,X) plane. For values not covered by one of these formulae, the order is incremented by an integer so that one of these formulae apply. Backward recursion is used to reduce orders by integer values. The asymptotic expansion for X to infinity is used only when the entire sequence (specifically the last member) lies within the region covered by the expansion. Leading terms of these expansions are used to test for over or underflow where appropriate. If a sequence is requested and the last member would underflow, the result is set to zero and the next lower order tried, etc., until a member comes on scale or all are set to zero. An overflow cannot occur with scaling.
The maximum number of significant digits obtainable is the smaller of 14 and the number of digits carried in double precision arithmetic.
Copyright 1996-1999 Entisoft
Entisoft Tools is a trademark of Entisoft.