org.opensourcephysics.numerics
Class Hermite

java.lang.Object
  extended byorg.opensourcephysics.numerics.Hermite

public class Hermite
extends java.lang.Object

Calculates Hermite polynomials.


Method Summary
static Polynomial getPolynomial(int n)
          Gets the nth Hermite polynomial.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getPolynomial

public static Polynomial getPolynomial(int n)
Gets the nth Hermite polynomial. If it has already been calculated it just returns it from the list. If we have not calculated it uses the recursion relationship to calculate based off of the prior polynomials.