~ubuntu-branches/ubuntu/karmic/python-scipy/karmic

« back to all changes in this revision

Viewing changes to Lib/special/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Daniel T. Chen (new)
  • Date: 2005-03-16 02:15:29 UTC
  • Revision ID: james.westby@ubuntu.com-20050316021529-xrjlowsejs0cijig
Tags: upstream-0.3.2
ImportĀ upstreamĀ versionĀ 0.3.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# special - Special Functions
 
3
#
 
4
 
 
5
from info_special import __doc__
 
6
from special_version import special_version as __version__
 
7
 
 
8
from basic import *
 
9
import specfun
 
10
import orthogonal
 
11
from orthogonal import legendre, chebyt, chebyu, chebyc, chebys, \
 
12
     jacobi, laguerre, genlaguerre, hermite, hermitenorm, gegenbauer, \
 
13
     sh_legendre, sh_chebyt, sh_chebyu, sh_jacobi, poch
 
14