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

« back to all changes in this revision

Viewing changes to Lib/special/tests/fncs_cep.dat

  • Committer: Bazaar Package Importer
  • Author(s): Ondrej Certik
  • Date: 2008-06-16 22:58:01 UTC
  • mfrom: (2.1.24 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080616225801-irdhrpcwiocfbcmt
Tags: 0.6.0-12
* The description updated to match the current SciPy (Closes: #489149).
* Standards-Version bumped to 3.8.0 (no action needed)
* Build-Depends: netcdf-dev changed to libnetcdf-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# here are the tests for functions defined in cephes
2
 
# library
3
 
#
4
 
# each test should be written as CONSECUTIVE lines.
5
 
# If you split a test on more than one line,
6
 
# remember putting commas at the end of each line, excluding the
7
 
# last one.
8
 
# An empty line, or a comment only one, marks the end 
9
 
# of each test's definition.
10
 
#
11
 
cephes.airy,'airy',in_vars={'z':(0.+0.j,10.+10j)}, # You can put comments
12
 
out_vars={'Ai': 0, 'Aip': 0, 'Bi':0, 'Bip':0}      # on test lines too!
13
 
 
14
 
cephes.airye,'airye',in_vars={'z':(0.+0j,10.+10j)},
15
 
out_vars={'Ai': 0, 'Aip': 0, 'Bi':0, 'Bip':0}
16
 
 
17
 
cephes.ellpj,'ellpj_sn',in_vars={'m':(0.,1.),'u':(-100,100)},
18
 
out_vars={'sn':0,'cn':0,'dn':0,'ph':0}