Home | Doxygen Documentation | Tutorials | Developer Tools (restricted)

Public Member Functions | Protected Member Functions | Protected Attributes
concepts::Laguerre Class Reference

Laguerre polynomials. More...

#include <laguerre.hh>

Inheritance diagram for concepts::Laguerre:
Inheritance graph
[legend]
Collaboration diagram for concepts::Laguerre:
Collaboration graph
[legend]

List of all members.

Public Member Functions

 Laguerre (const int P, const Real *xP, const int NxP)
 Constructor.
uint n () const
 Returns the number of shape functions.
uint nP () const
 Returns the number of abscissas (in which the shape functions are evaluated)
const Realvalues () const
 Returns the values of the shape functions.
 ~Laguerre ()

Protected Member Functions

virtual std::ostream & info (std::ostream &os) const
 Returns information in an output stream.

Protected Attributes

Realvalues_
 Values of the shape functions.

Detailed Description

Laguerre polynomials.

The polynomials are orthogonal w.r.t. the weight $\exp(-x)$ in the intervall $[0,\infty)$.

The class holds all functions up to a maximal index $n$.

Author:
Kersten Schmidt, 2009

Definition at line 27 of file laguerre.hh.


Constructor & Destructor Documentation

concepts::Laguerre::Laguerre ( const int  P,
const Real xP,
const int  NxP 
)

Constructor.

Parameters:
PHighest order of the function, begin with 1
xPPoints in [0,inf)
NxPNumber of points
concepts::Laguerre::~Laguerre ( )

Member Function Documentation

virtual std::ostream& concepts::Laguerre::info ( std::ostream &  os) const [protected, virtual]

Returns information in an output stream.

Implements concepts::ShapeFunction1D< Real >.

uint concepts::ShapeFunction1D< Real >::n ( ) const [inline, inherited]

Returns the number of shape functions.

Definition at line 33 of file shapefunction.hh.

uint concepts::ShapeFunction1D< Real >::nP ( ) const [inline, inherited]

Returns the number of abscissas (in which the shape functions are evaluated)

Definition at line 36 of file shapefunction.hh.

const Real * concepts::ShapeFunction1D< Real >::values ( ) const [inline, inherited]

Returns the values of the shape functions.

Definition at line 38 of file shapefunction.hh.


Member Data Documentation

Real * concepts::ShapeFunction1D< Real >::values_ [protected, inherited]

Values of the shape functions.

Definition at line 43 of file shapefunction.hh.


The documentation for this class was generated from the following file:

Home | Doxygen Documentation | Tutorials | Developer Tools (restricted)