Skip to content

Latest commit

 

History

History
62 lines (42 loc) · 2.1 KB

about.rst

File metadata and controls

62 lines (42 loc) · 2.1 KB

About NumPy

NumPy is the fundamental package needed for scientific computing with Python. This package contains:

Besides its obvious scientific uses, NumPy can also be used as an efficient multi-dimensional container of generic data. Arbitrary data types can be defined. This allows NumPy to seamlessly and speedily integrate with a wide variety of databases.

NumPy is a successor for two earlier scientific Python libraries: Numeric and Numarray.

NumPy community

NumPy is a distributed, volunteer, open-source project. You can help us make it better; if you believe something should be improved either in functionality or in documentation, don't hesitate to contact us --- or even better, contact us and participate in fixing the problem.

Our main means of communication are:

More information about the development of NumPy can be found at our Developer Zone.

The project management structure can be found at our :doc:`governance page <dev/governance/index>`

About this documentation

Conventions

Names of classes, objects, constants, etc. are given in boldface font. Often they are also links to a more detailed documentation of the referred object.

This manual contains many examples of use, usually prefixed with the Python prompt >>> (which is not a part of the example code). The examples assume that you have first entered:

>>> import numpy as np

before running the examples.