GNU Octave 10.1.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
 
Loading...
Searching...
No Matches
xzexp.f
Go to the documentation of this file.
1 SUBROUTINE xzexp(AR, AI, BR, BI)
2C***BEGIN PROLOGUE XZEXP
3C***REFER TO ZBESH,ZBESI,ZBESJ,ZBESK,ZBESY,ZAIRY,ZBIRY
4C
5C DOUBLE PRECISION COMPLEX EXPONENTIAL FUNCTION B=EXP(A)
6C
7C***ROUTINES CALLED (NONE)
8C***END PROLOGUE XZEXP
9 DOUBLE PRECISION AR, AI, BR, BI, ZM, CA, CB
10 zm = dexp(ar)
11 ca = zm*dcos(ai)
12 cb = zm*dsin(ai)
13 br = ca
14 bi = cb
15 RETURN
16 END
subroutine xzexp(ar, ai, br, bi)
Definition xzexp.f:2