Search
Search Results
Search finished, found 6 page(s) matching the search query.
- NumPy 1.15.0 Release Notes
...perform accumulation they no longer make temporary copies because of the overlap between input an output, that is, the next element accumulated is added before the accumulated result is stored in its place, hence the overlap is safe. Avoid...
- NumPy 1.8.1 Release Notes
...an error issued not at construction time but when removing the multi index, setting the iterator range, or getting the next function. This has no effect on currently working code, but highlights the necessity of checking for an error retur...
- NumPy 1.9.0 Release Notes
...an error issued not at construction time but when removing the multi index, setting the iterator range, or getting the next function. This has no effect on currently working code, but highlights the necessity of checking for an error retur...
- numpy.nditer.copy
...n its current state. Examples >>> import numpy as np >>> x = np.arange(10) >>> y = x + 1 >>> it = np.nditer([x, y]) >>> next(it) (array(0), array(1)) >>> it2 = it.copy() >>> next(it2) (array(1), array(2))...
- Python types and C-structures
..._intp *strides An array of integers providing for each dimension the number of bytes that must be skipped to get to the next element in that dimension. Associated with macro PyArray_STRIDES. PyObject *base Pointed to by PyArray_BASE, th...
- numpy.nditer.iternext (Python method, in numpy.nditer.iternext)