Method Summary |
|
__init__ (...)
x.__init__(...) initializes x; see x.__class__.__doc__ for
signature |
|
__delitem__ (x,
y)
x.__delitem__(y) <==> del x[y] |
|
__getitem__ (x,
y)
x.__getitem__(y) <==> x[y] |
|
__len__ (x)
x.__len__() <==> len(x) |
|
__new__ (T,
S,
...)
T.__new__(S, ...) -> a new object with type S, a subtype of T |
|
__setitem__ (x,
i,
y)
x.__setitem__(i, y) <==> x[i]=y |
byte offset of indices within array |
_getByteOffset (indices)
_getByteOffset(indices) -> byte offset of indices within array |
None |
_putter (axis1,
axis2)
_putter(axis1, axis2) -> None |
|
_simpleIndexing (...)
_simpleIndexing(key, value=None) gets or sets for integer sequence
key |
None |
_taker (axis1,
axis2)
_taker(axis1, axis2) -> None |
|
_universalIndexing (...)
_universalIndexing(key, value=None) gets(value=None) or
sets(value!=None) at key |
1 if array is fortran-contiguous, 0 otherwise. |
is_fortran_contiguous ()
is_fortran_contiguous() -> 1 if array is fortran-contiguous, 0
otherwise. |
1 if array is aligned, 0 otherwise. |
isaligned ()
isaligned() -> 1 if array is aligned, 0 otherwise. |
1 if array is contiguous, 0 otherwise. |
iscontiguous ()
iscontiguous() -> 1 if array is contiguous, 0 otherwise. |
total number of elements in array. |
nelements ()
nelements() -> total number of elements in array. |
None |
swapaxes (axis1,
axis2)
swapaxes(axis1, axis2) -> None |
array converted to nested list of scalars. |
tolist ()
tolist() -> array converted to nested list of scalars. |
new array object referring to same data buffer |
view ()
view() -> new array object referring to same data buffer |
Inherited from object |
|
__delattr__ (...)
x.__delattr__('name') <==> del x.name |
|
__getattribute__ (...)
x.__getattribute__('name') <==> x.name |
|
__hash__ (x)
x.__hash__() <==> hash(x) |
|
__reduce__ (...)
helper for pickle |
|
__reduce_ex__ (...)
helper for pickle |
|
__repr__ (x)
x.__repr__() <==> repr(x) |
|
__setattr__ (...)
x.__setattr__('name', value) <==> x.name = value |
|
__str__ (x)
x.__str__() <==> str(x) |
Class Variable Summary |
getset_descriptor |
_aligned = <attribute '_aligned' of '_ndarray._ndarray' ...
|
getset_descriptor |
_byteoffset = <attribute '_byteoffset' of '_ndarray._nda...
|
getset_descriptor |
_bytestride = <attribute '_bytestride' of '_ndarray._nda...
|
getset_descriptor |
_contiguous = <attribute '_contiguous' of '_ndarray._nda...
|
getset_descriptor |
_data = <attribute '_data' of '_ndarray._ndarray' object...
|
getset_descriptor |
_itemsize = <attribute '_itemsize' of '_ndarray._ndarray...
|
getset_descriptor |
_shape = <attribute '_shape' of '_ndarray._ndarray' obje...
|
getset_descriptor |
_strides = <attribute '_strides' of '_ndarray._ndarray' ...
|
getset_descriptor |
flags = <attribute 'flags' of '_ndarray._ndarray' object...
|
getset_descriptor |
rank = <attribute 'rank' of '_ndarray._ndarray' objects>
|