Bases: object
A numpy array stored on disk in a temporary file.
Initialization
Parameters : |
|
---|
Examples
>>> f = FileArray(numpy.ma.array([1, 2, 3, 4, 5]))
Return a deep copy.
Equivalent to copy.deepcopy(f).
Returns : |
|
---|
Examples
>>> f.copy()
Numpy data-type of the array.
Examples
>>> f.dtype
dtype('float64')
Number of dimensions in the array.
Examples
>>> f.shape
(73, 96)
>>> f.ndim
2
Tuple of the array’s dimension sizes.
Examples
>>> f.shape
(73, 96)
Number of elements in the array.
Examples
>>> f.shape
(73, 96)
>>> f.size
7008