Search
Search Results
Search finished, found 12 page(s) matching the search query.
- numpy.record.flat
...numpy.record.flat...
- numpy.record.flatten
...ce Array objects Standard array subclasses numpy.record numpy.record.flatten...
- numpy.record.flat (Python attribute, in numpy.record.flat)
- Indexing on
ndarrays
...x['a'].shape (2, 2) >>> x['a'].dtype dtype('int32') >>> x['b'].shape (2, 2, 3, 3) >>> x['b'].dtype dtype('float64') Flat iterator indexing x.flat returns an iterator that will iterate over the entire array (in C-contiguous style with th...
- NumPy 1.12.0 Release Notes
...y given axis. np.count_nonzero now has an axis parameter, allowing non-zero counts to be generated on more than just a flattened array object. BLIS support in numpy.distutils Building against the BLAS implementation provided by the BLIS...
- numpy.rec.fromarrays
...shape=None, formats=None, names=None, titles=None, aligned=False, byteorder=None)[source] Create a record array from a (flat) list of arrays Parameters: arrayListlist or tupleList of array-like objects (such as lists, tuples, and ndarrays...
- numpy.recarray
...array’s data. device dtypeData-type of the array’s elements. flagsInformation about the memory layout of the array. flatA 1-D iterator over the array. imagThe imaginary part of the array. itemset itemsizeLength of one array element in...
- numpy.record
...rray attribute. basebase object dataPointer to start of data. device dtypedtype object flagsinteger value of flags flatA 1-D view of the scalar. imagThe imaginary part of the scalar. itemset itemsizeThe length of one element in bytes...
- numpy.record.flat
...numpy.record.flat...
- Standard array subclasses
...ation is raised by the iterator. There are several ways to iterate over an array that may be useful: default iteration, flat iteration, and \(N\)-dimensional enumeration. Default iteration The default iterator of an ndarray object is the d...
- numpy.record.flatten (Python method, in numpy.record.flatten)
- Array API