~ubuntu-branches/ubuntu/saucy/python-scipy/saucy

« back to all changes in this revision

Viewing changes to scipy/lib/lapack/flapack.pyf.src

  • 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
!%f90 -*- f90 -*-
 
2
!
 
3
! Signatures for f2py wrappers of FORTRAN LAPACK functions.
 
4
!
 
5
! Author: Pearu Peterson
 
6
! Created: Jan-Feb 2002
 
7
! $Revision: 1174 $ $Date: 2004-11-19 05:43:14 -0800 (Fri, 19 Nov 2004) $
 
8
!
 
9
! Additions by Travis Oliphant
 
10
!
 
11
! Split and use scipy_distutils.from_template: Pearu
 
12
!
 
13
 
 
14
python module flapack
 
15
interface
 
16
 
 
17
   include 'flapack_user.pyf.src'
 
18
 
 
19
   ! Driver Routines
 
20
   include 'flapack_le.pyf.src'
 
21
   include 'flapack_lls.pyf.src'
 
22
   include 'flapack_esv.pyf.src'
 
23
   include 'flapack_gesv.pyf.src'
 
24
 
 
25
   ! Computational Routines
 
26
   include 'flapack_lec.pyf.src'
 
27
   include 'flapack_llsc.pyf.src'
 
28
   include 'flapack_sevc.pyf.src'
 
29
   include 'flapack_evc.pyf.src'
 
30
   include 'flapack_svdc.pyf.src'
 
31
   include 'flapack_gsevc.pyf.src'
 
32
   include 'flapack_gevc.pyf.src'
 
33
 
 
34
   include 'flapack_aux.pyf.src'
 
35
   
 
36
end interface
 
37
end python module flapack