diff options
author | Stefan van der Walt <stefan@sun.ac.za> | 2008-08-05 09:20:07 +0000 |
---|---|---|
committer | Stefan van der Walt <stefan@sun.ac.za> | 2008-08-05 09:20:07 +0000 |
commit | 6647bf7eaeb915e2d09db8b5c7584ee286962d3b (patch) | |
tree | 803c7d548fb8dc8f571aad76c6473f20ba71c01d /numpy/dual.py | |
parent | f8f44a0595da3ae8be9458ead1366bcc72cd3390 (diff) | |
download | numpy-6647bf7eaeb915e2d09db8b5c7584ee286962d3b.tar.gz |
Merge from documentation editor.
Diffstat (limited to 'numpy/dual.py')
-rw-r--r-- | numpy/dual.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/numpy/dual.py b/numpy/dual.py index c47f8f820..3c863bf6f 100644 --- a/numpy/dual.py +++ b/numpy/dual.py @@ -1,3 +1,15 @@ +""" +Aliases for functions which may be accelerated by Scipy. + +Scipy_ can be built to use accelerated or otherwise improved libraries +for FFTs, linear algebra, and special functions. This module allows +developers to transparently support these accelerated functions when +scipy is available but still support users who have only installed +Numpy. + +.. _Scipy : http://www.scipy.org + +""" # This module should be used for functions both in numpy and scipy if # you want to use the numpy version if available but the scipy version # otherwise. |