https://github.com/numpy/numpy-refactor
INACTIVE - abandoned refactoring effort
https://github.com/numpy/numpy-refactor
Last synced: 2 months ago
JSON representation
INACTIVE - abandoned refactoring effort
- Host: GitHub
- URL: https://github.com/numpy/numpy-refactor
- Owner: numpy
- License: bsd-3-clause
- Archived: true
- Created: 2010-11-12T16:51:03.000Z (about 15 years ago)
- Default Branch: refactor
- Last Pushed: 2021-03-04T02:14:20.000Z (almost 5 years ago)
- Last Synced: 2024-04-12T04:13:54.250Z (over 1 year ago)
- Language: C
- Homepage:
- Size: 20 MB
- Stars: 27
- Watchers: 34
- Forks: 21
- Open Issues: 1
-
Metadata Files:
- Readme: README.txt
- License: LICENSE.txt
Awesome Lists containing this project
README
NumPy is the fundamental package needed for scientific computing with Python.
This package contains:
* a powerful N-dimensional array object
* sophisticated (broadcasting) functions
* tools for integrating C/C++ and Fortran code
* useful linear algebra, Fourier transform, and random number capabilities.
It derives from the old Numeric code base and can be used as a replacement for Numeric. It also adds the features introduced by numarray and can be used to replace numarray.
More information can be found at the website:
http://scipy.org/NumPy
After installation, tests can be run with:
python -c 'import numpy; numpy.test()'
When installing a new version of numpy for the first time or before upgrading
to a newer version, it is recommended to turn on deprecation warnings when
running the tests:
python -Wd -c 'import numpy; numpy.test()'
The most current development version is always available from our
git repository:
http://github.com/numpy/numpy