doc_content
stringlengths
1
386k
doc_id
stringlengths
5
188
numpy.vectorize.__call__ method vectorize.__call__(*args, **kwargs)[source] Return arrays with the results of pyfunc broadcast (vectorized) over args and kwargs not in excluded.
numpy.reference.generated.numpy.vectorize.__call__
The Array Interface Note This page describes the numpy-specific API for accessing the contents of a numpy array from other C extensions. PEP 3118 – The Revised Buffer Protocol introduces similar, standardized API to Python 2.6 and 3.0 for any extension module to use. Cython’s buffer array support uses the PEP 3118 API...
numpy.reference.arrays.interface
numpy.lib.format Binary serialization NPY format A simple format for saving numpy arrays to disk with the full information about them. The .npy format is the standard binary file format in NumPy for persisting a single arbitrary NumPy array on disk. The format stores all of the shape and dtype information necessary to...
numpy.reference.generated.numpy.lib.format