Code covered by the BSD License  

Highlights from
Mathieu Functions Toolbox v.1.0

from Mathieu Functions Toolbox v.1.0 by E. Cojocaru
elliptical cylinder coordinates, special functions, angular and radial Mathieu functions

dHpm2(KF,u,q,mv,nmax)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%   DERIVATIVE OF RADIAL MATHIEU FUNCTION OF THE FOURTH KIND  
%   
%   y = dHpm2(KF,u,q,mv,nmax)   [p,m = e,o (even,odd)]
%   
%   INPUTS:     -u= value of radial coordinate to compute function 
%               -q= elliptical parameter (q > 0)
%               -mv= matrix of expansion coefficients
%               -nmax= maximum order 
%               -KF= function code:  KF=1 even-even
%                                    KF=2 even-odd
%                                    KF=3 odd-even
%                                    KF=4 odd-odd      
%   OUTPUTS:    -y= vector of derivative values for all 'nmax' orders 
%                  
%   The Radial Mathieu Function of the Fourth Kind is defined by analogy   
%   with the Hankel Function of the Second Kind:  
%     Hpm2(KF,u,q,mv,nmax)=Jpm(KF,u,q,mv,nmax)-i*Ypm(KF,u,q,mv,nmax)
%   'mv' is determined beforehand with function 'eig_Spm'
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%    E. Cojocaru, revised November 2008
%    Observations, suggestions, and recommendations are welcome at e-mail:
%    ecojocaru@theory.nipne.ro
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%   dHpm2 FUNCTION CALL
function y = dHpm2(KF,u,q,mv,nmax)

   y1 = dJpm(KF,u,q,mv,nmax);
   y2 = dYpm(KF,u,q,mv,nmax);

   y = y1 - i*y2;

Contact us at files@mathworks.com