3

I need to port a numerical simulation written in Wolfram Mathematica to another language. The part that is giving me trouble is that the code is calling the HermiteH function with a non-integral order (the parameter n is a fractional number, not an integer), which I'm guessing is some extension to Hermite polynomials. What algorithm can be used to implement this function and what does it actually calculate when given a non-integral order?

(I do know how to implement hermite polynomials for integral orders)

aleator
  • 4,436
  • 20
  • 31
  • What is the value of `n` in question? If it varies, what is the range of values? Mostly just curious; sometimes algorithms exist for some value or values of parameters and not others. – Robert Dodier Nov 14 '14 at 23:42

1 Answers1

4

http://www.maplesoft.com/support/help/maple/view.aspx?path=HermiteH

For n different from a non-negative integer, the analytic extension of the Hermite polynomial is given by

enter image description here

where KummerM is a Kummer's function (of the first kind) M and Γ is a gamma function

Cheery
  • 16,063
  • 42
  • 57