44#ifndef STOKHOS_HERMITEBASIS_HPP
45#define STOKHOS_HERMITEBASIS_HPP
66 template <
typename ordinal_type,
typename value_type>
95 virtual Teuchos::RCP<OneDOrthogPolyBasis<ordinal_type,value_type> >
cloneWithOrder(ordinal_type
p)
const;
107 Teuchos::Array<value_type>&
alpha,
108 Teuchos::Array<value_type>&
beta,
109 Teuchos::Array<value_type>&
delta,
110 Teuchos::Array<value_type>&
gamma)
const;
Hermite polynomial basis.
HermiteBasis(const HermiteBasis &)
virtual bool computeRecurrenceCoefficients(ordinal_type n, Teuchos::Array< value_type > &alpha, Teuchos::Array< value_type > &beta, Teuchos::Array< value_type > &delta, Teuchos::Array< value_type > &gamma) const
Compute recurrence coefficients.
virtual Teuchos::RCP< OneDOrthogPolyBasis< ordinal_type, value_type > > cloneWithOrder(ordinal_type p) const
Clone this object with the option of building a higher order basis.
HermiteBasis(ordinal_type p, bool normalize=false, GrowthPolicy growth=SLOW_GROWTH)
Constructor.
HermiteBasis & operator=(const HermiteBasis &b)
~HermiteBasis()
Destructor.
Implementation of OneDOrthogPolyBasis based on the general three-term recurrence relationship:
bool normalize
Normalize basis.
GrowthPolicy growth
Smolyak growth policy.
Teuchos::Array< value_type > alpha
Recurrence coefficients.
Teuchos::Array< value_type > beta
Recurrence coefficients.
ordinal_type p
Order of basis.
Teuchos::Array< value_type > gamma
Recurrence coefficients.
Teuchos::Array< value_type > delta
Recurrence coefficients.
Top-level namespace for Stokhos classes and functions.
GrowthPolicy
Enumerated type for determining Smolyak growth policies.