scipy-0.9.0b1

所属分类:其他
开发工具:Python
文件大小:7048KB
下载次数:18
上传日期:2010-12-25 05:59:38
上 传 者snowmenl
说明:  SciPy函数库在NumPy库的基础上增加了众多的数学、科学以及工程计算中常用的库函数。例如线性代数、常微分方程数值求解、信号处理、图像处理、稀疏矩阵等等。
(SciPy is package of tools for science and engineering for Python. It includes modules for statistics, optimization, integration, linear algebra, Fourier transforms, signal and image processing, ODE solvers, and more.)

文件列表:
scipy-0.9.0b1 (0, 2010-12-12)
scipy-0.9.0b1\doc (0, 2010-12-12)
scipy-0.9.0b1\doc\Makefile (6219, 2010-12-12)
scipy-0.9.0b1\doc\postprocess.py (1240, 2010-07-26)
scipy-0.9.0b1\doc\release (0, 2010-12-12)
scipy-0.9.0b1\doc\release\0.7.0-notes.rst (15669, 2010-12-12)
scipy-0.9.0b1\doc\release\0.7.1-notes.rst (2523, 2010-12-12)
scipy-0.9.0b1\doc\release\0.7.2-notes.rst (343, 2010-12-12)
scipy-0.9.0b1\doc\release\0.8.0-notes.rst (10943, 2010-11-02)
scipy-0.9.0b1\doc\release\0.9.0-notes.rst (7260, 2010-12-12)
scipy-0.9.0b1\doc\source (0, 2010-12-12)
scipy-0.9.0b1\doc\source\_static (0, 2010-12-12)
scipy-0.9.0b1\doc\source\_static\scipy.css (2493, 2010-07-26)
scipy-0.9.0b1\doc\source\_static\scipyshiny_small.png (18991, 2010-07-26)
scipy-0.9.0b1\doc\source\_templates (0, 2010-12-12)
scipy-0.9.0b1\doc\source\_templates\autosummary (0, 2010-12-12)
scipy-0.9.0b1\doc\source\_templates\autosummary\class.rst (450, 2010-07-26)
scipy-0.9.0b1\doc\source\_templates\indexsidebar.html (169, 2010-07-26)
scipy-0.9.0b1\doc\source\_templates\layout.html (448, 2010-07-26)
scipy-0.9.0b1\doc\source\cluster.hierarchy.rst (299, 2010-07-26)
scipy-0.9.0b1\doc\source\cluster.rst (207, 2010-07-26)
scipy-0.9.0b1\doc\source\cluster.vq.rst (254, 2010-07-26)
scipy-0.9.0b1\doc\source\conf.py (9202, 2010-12-12)
scipy-0.9.0b1\doc\source\constants.rst (19922, 2010-07-26)
scipy-0.9.0b1\doc\source\fftpack.rst (1151, 2010-12-12)
scipy-0.9.0b1\doc\source\index.rst (497, 2010-07-26)
scipy-0.9.0b1\doc\source\integrate.rst (816, 2010-07-26)
scipy-0.9.0b1\doc\source\interpolate.rst (1803, 2010-12-12)
scipy-0.9.0b1\doc\source\io.rst (982, 2010-07-26)
scipy-0.9.0b1\doc\source\linalg.rst (1099, 2010-12-12)
scipy-0.9.0b1\doc\source\maxentropy.rst (1638, 2010-07-26)
scipy-0.9.0b1\doc\source\misc.rst (244, 2010-07-26)
scipy-0.9.0b1\doc\source\ndimage.rst (2343, 2010-07-26)
scipy-0.9.0b1\doc\source\odr.rst (541, 2010-07-26)
scipy-0.9.0b1\doc\source\optimize.nonlin.rst (38, 2010-12-12)
scipy-0.9.0b1\doc\source\optimize.rst (1570, 2010-12-12)
scipy-0.9.0b1\doc\source\release.0.7.0.rst (40, 2010-12-12)
scipy-0.9.0b1\doc\source\release.0.7.1.rst (40, 2010-12-12)
scipy-0.9.0b1\doc\source\release.0.7.2.rst (40, 2010-12-12)
scipy-0.9.0b1\doc\source\release.0.8.0.rst (40, 2010-12-12)
... ...

================================================= Developing SciPy ================================================= .. Contents:: What is SciPy? -------------- SciPy (pronounced "Sigh Pie") is open-source software for mathematics, science, and engineering. It includes modules for statistics, optimization, integration, linear algebra, Fourier transforms, signal and image processing, ODE solvers, and more. It is also the name of a very popular conference on scientific programming with Python. The SciPy library depends on NumPy, which provides convenient and fast N-dimensional array manipulation. The SciPy library is built to work with NumPy arrays, and provides many user-friendly and efficient numerical routines such as routines for numerical integration and optimization. Together, they run on all popular operating systems, are quick to install, and are free of charge. NumPy and SciPy are easy to use, but powerful enough to be depended upon by some of the world's leading scientists and engineers. If you need to manipulate numbers on a computer and display or publish the results, give SciPy a try! SciPy structure --------------- SciPy aims at being a robust and efficient "super-package" of a number of modules, each of a non-trivial size and complexity. In order for "SciPy integration" to work flawlessly, all SciPy modules must follow certain rules that are described in this document. Hopefully this document will be helpful for SciPy contributors and developers as a basic reference about the structure of the SciPy package. Currently SciPy consists of the following files and directories: INSTALL.txt SciPy prerequisites, installation, testing, and troubleshooting. THANKS.txt SciPy developers and contributors. Please keep it up to date!! README.txt SciPy structure (this document). setup.py Script for building and installing SciPy. MANIFEST.in Additions to distutils-generated SciPy tar-balls. Its usage is deprecated. scipy/ Contains SciPy __init__.py and the directories of SciPy modules. SciPy modules +++++++++++++ In the following, a *SciPy module* is defined as a Python package, say xxx, that is located in the scipy/ directory. All SciPy modules should follow the following conventions: * Ideally, each SciPy module should be as self-contained as possible. That is, it should have minimal dependencies on other packages or modules. Even dependencies on other SciPy modules should be kept to a minimum. A dependency on NumPy is of course assumed. * Directory ``xxx/`` must contain + a file ``setup.py`` that defines ``configuration(parent_package='',top_path=None)`` function. See below for more details. + a file ``info.py``. See below more details. * Directory ``xxx/`` may contain + a directory ``tests/`` that contains files ``test_.py`` corresponding to modules ``xxx/{.py,.so,/}``. See below for more details. + a file ``MANIFEST.in`` that may contain only ``include setup.py`` line. DO NOT specify sources in MANIFEST.in, you must specify all sources in setup.py file. Otherwise released SciPy tarballs will miss these sources. + a directory ``docs/`` for documentation. For details, read: http://projects.scipy.org/numpy/wiki/DistutilsDoc Documentation ------------- The documentation site is here http://docs.scipy.org Web sites --------- The user's site is here http://www.scipy.org/ The developer's site is here http://projects.scipy.org/scipy/wiki Mailing Lists ------------- Please see the developer's list here http://projects.scipy.org/mailman/listinfo/scipy-dev Bug reports ----------- To search for bugs, please use the NIPY Bug Tracker at http://projects.scipy.org/scipy/query To report a bug, please use the NIPY Bug Tracker at http://projects.scipy.org/scipy/newticket License information ------------------- See the file "LICENSE" for information on the history of this software, terms & conditions for usage, and a DISCLAIMER OF ALL WARRANTIES.

近期下载者

相关文件


收藏者