stride property

stride property

Gets or sets the stride. The stride attribute indicates number of values to be considered a unit during each access to the array. The default value is 1, indicating that a single value is accessed. Optional attribute.

Definition:

@property
def stride(self):
    ...
@stride.setter
def stride(self, value):
    ...

See Also