All Samples(11766) | Call(1) | Derive(0) | Import(11765)
NumPy
=====
Provides
1. An array object of arbitrary homogeneous items
2. Fast mathematical operations over arrays
3. Linear Algebra, Fourier Transforms, Random Number Generation
How to use the documentation
----------------------------
Documentation is available in two forms: docstrings provided
with the code, and a loose standing reference guide, available from
`the NumPy homepage <http://www.scipy.org>`_.
We recommend exploring the docstrings using
`IPython <http://ipython.scipy.org>`_, an advanced Python shell with
TAB-completion and introspection capabilities. See below for further
instructions.
The docstring examples assume that `numpy` has been imported as `np`::
>>> import numpy as np
Code snippets are indicated by three greater-than signs::
>>> x = 42
>>> x = x + 1
Use the built-in ``help`` function to view a function's docstring::
>>> help(np.sort)
... # doctest: +SKIP
For some objects, ``np.info(obj)`` may provide additional help. This is
particularly true if you see the line "Help on ufunc object:" at the top
of the help() page. Ufuncs are implemented in C, not Python, for speed.
The native Python help() does not know how to view their help, but our
np.info() function does.
To search for documents containing a keyword, do::
>>> np.lookfor('keyword')
... # doctest: +SKIP
General-purpose documents like a glossary and help on the basic concepts
of numpy are available under the ``doc`` sub-module::
>>> from numpy import doc
>>> help(doc)
... # doctest: +SKIP
Available subpackages
---------------------
doc
Topical documentation on broadcasting, indexing, etc.
lib
Basic functions used by several sub-packages.
random
Core Random Tools
linalg
Core Linear Algebra Tools
fft
Core FFT routines
polynomial
Polynomial tools
testing
Numpy testing tools
f2py
Fortran to Python Interface Generator.
distutils
Enhancements to distutils with support for
Fortran compilers support and more.
Utilities
---------
test
Run numpy unittests
show_config
Show numpy build configuration
dual
Overwrite certain functions with high-performance Scipy tools
matlib
Make everything matrices.
__version__
Numpy version string
Viewing documentation using IPython
-----------------------------------
Start IPython with the NumPy profile (``ipython -p numpy``), which will
import `numpy` under the alias `np`. Then, use the ``cpaste`` command to
paste examples into the shell. To see which functions are available in
`numpy`, type ``np.<TAB>`` (where ``<TAB>`` refers to the TAB key), or use
``np.*cos*?<ENTER>`` (where ``<ENTER>`` refers to the ENTER key) to narrow
down the list. To view the docstring for a function, use
``np.cos?<ENTER>`` (to view the docstring) and ``np.cos??<ENTER>`` (to view
the source code).
Copies vs. in-place operation
-----------------------------
Most of the functions in `numpy` return a copy of the array argument
(e.g., `np.sort`). In-place versions of these functions are often
available as array methods, i.e. ``x = np.array([1,2,3]); x.sort()``.
Exceptions to this rule are documented.src/p/y/pylon-HEAD/examples/pyreto/rlopf.py pylon(Download)
__author__ = 'Richard Lincoln, r.w.lincoln@gmail.com' """ This example demonstrates how optimise power flow with Pyreto. """ import sys import logging import numpy
Pd0 = [b.p_demand for b in case.buses if b.type == pylon.PQ]
# Define a 24-hour load profile with hourly values.
p1h = numpy([0.52, 0.54, 0.52, 0.50, 0.52, 0.57, 0.60, 0.71, 0.89, 0.85, 0.88,
0.94, 0.90, 0.88, 0.88, 0.82, 0.80, 0.78, 0.76, 0.68, 0.68, 0.68,
0.65, 0.58])
#p1h = p1h[6:-6]
src/m/a/matplotlib-HEAD/matplotlib/examples/axes_grid/inset_locator_demo2.py matplotlib(Download)
import matplotlib.pyplot as plt
from mpl_toolkits.axes_grid1.inset_locator import zoomed_inset_axes
from mpl_toolkits.axes_grid1.inset_locator import mark_inset
import numpy as np
def get_demo_image():
from matplotlib.cbook import get_sample_data
import numpy as np
src/m/a/matplotlib-HEAD/examples/axes_grid/inset_locator_demo2.py matplotlib(Download)
import matplotlib.pyplot as plt
from mpl_toolkits.axes_grid1.inset_locator import zoomed_inset_axes
from mpl_toolkits.axes_grid1.inset_locator import mark_inset
import numpy as np
def get_demo_image():
from matplotlib.cbook import get_sample_data
import numpy as np
src/m/a/matplotlib-HEAD/py4science/examples/numpy_wrap/f2py/example4/test_simple.py matplotlib(Download)
#!/usr/bin/env python import numpy as np import simple def test_linspace():
src/m/a/matplotlib-HEAD/py4science/examples/numpy_wrap/f2py/example3/test_fib.py matplotlib(Download)
import numpy as N import example n = 10 fn = example.fib(n)
src/m/a/matplotlib-HEAD/py4science/examples/numpy_wrap/f2py/example3/test_example.py matplotlib(Download)
import example import numpy x = numpy.arange(10.) yf = example.cumsum(x) yn = numpy.cumsum(x)
src/m/a/matplotlib-HEAD/py4science/examples/numpy_wrap/f2py/example3/test.py matplotlib(Download)
# See http://cens.ioc.ee/projects/f2py2e/usersguide/index.html for # f2py users guide import example import numpy print example.fib(12)
src/m/a/Matplotlib--JJ-s-dev-HEAD/examples/axes_grid/inset_locator_demo2.py Matplotlib--JJ-s-dev(Download)
import matplotlib.pyplot as plt
from mpl_toolkits.axes_grid.inset_locator import zoomed_inset_axes
from mpl_toolkits.axes_grid.inset_locator import mark_inset
import numpy as np
def get_demo_image():
from matplotlib.cbook import get_sample_data
import numpy as np
src/n/i/nipy-HEAD/nipy/fixes/scipy/stats/models/tests/exampledata.py nipy(Download)
# emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- # vi: set ft=python sts=4 ts=4 sw=4 et: import numpy as np import os filename = os.path.join(os.path.dirname(os.path.abspath(__file__)), "test_data.bin")
src/m/a/matplotlib-HEAD/py4science/examples/skel/fortran_wrap/test_fib.py matplotlib(Download)
import numpy as N import example n = 10 fn = example.fib(n)
1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 Next