MATLAB: Does MATLAB 7.5 (R2007b) support Whittaker functions

Symbolic Math Toolboxwhittakerwhittakermwhittakerw

I would like to evaluate the Whittaker M and W functions.

Best Answer

Although MATLAB does not define the Whittaker M and W functions, they can be evaluated numerically using the Symbolic Math Toolbox. You may evaluate them with a syntax similar to
mfun('WhittakerM',1,1,[1 2 3])
which evaluates the Whittaker function M_1^1(x) at the points x = 1, 2, and 3.
More information about Whittaker functions may be found by evaluating the command
mhelp whittaker
at the MATLAB command prompt.