Welcome to Python-flavored Magnum! Please note that, while already being
rather stable, this functionality is still considered experimental and
some APIs might get changed without preserving full backwards compatibility.
class
MutableStridedBitArrayView4DMutable four-dimensional bit array view with stride information
See StridedBitArrayView1D and MutableStridedBitArrayView1D for more information.
Methods
- def broadcasted(self, dimension: int, size: int) -> MutableStridedBitArrayView4D
- Broadcast a dimension
- def flipped(self, dimension: int) -> MutableStridedBitArrayView4D
- Flip a dimension
- def transposed(self, a: int, b: int) -> MutableStridedBitArrayView4D
- Transpose two dimensions
Special methods
- def __buffer__(self, flags, /)
- Return a buffer object that exposes the underlying memory of the object.
- def __getitem__(self, slice: slice) -> MutableStridedBitArrayView4D
- Slice the view
- def __getitem__(self, i: int) -> MutableStridedBitArrayView3D
- Sub-view at given position
- def __getitem__(self, i: tuple[int, int, int, int]) -> bool
- Bit at given position
- def __getitem__(self, slice: tuple[slice, slice, slice, slice]) -> MutableStridedBitArrayView4D
- Slice the view
- def __init__(self, /) -> None
- Default constructor
- def __len__(self, /) -> int
- View size in the top-level dimension
- def __release_buffer__(self, buffer, /)
- Release the buffer object that exposes the underlying memory of the object.
- def __setitem__(self, i: tuple[int, int, int, int], value: bool) -> None
- Set a bit at given position
Properties
Method documentation
def corrade. containers. MutableStridedBitArrayView4D. broadcasted(self,
dimension: int,
size: int) -> MutableStridedBitArrayView4D
Broadcast a dimension
Exceptions | |
---|---|
IndexError | If dimension is not 0 , 1 2 or
3 |
def corrade. containers. MutableStridedBitArrayView4D. flipped(self,
dimension: int) -> MutableStridedBitArrayView4D
Flip a dimension
Exceptions | |
---|---|
IndexError | If dimension is not 0 , 1 2 or
3 |
def corrade. containers. MutableStridedBitArrayView4D. transposed(self,
a: int,
b: int) -> MutableStridedBitArrayView4D
Transpose two dimensions
Exceptions | |
---|---|
IndexError | If a or b is not 0 , 1 2 or
3 or if they’re the same |