str2d.Str2D.div
- Str2D.div(*args, **kwargs) Str2D[source]
Public method for dividing the data without the need to use the / operator. We use the join_v method to concatenate the data vertically with additional arguments.
- Parameters:
args (Tuple[Str2D]) – The Str2D objects to divide.
kwargs (dict) – Additional keyword arguments to pass to the join_v method.
- Returns:
A new Str2D object with the divided data.
- Return type:
See also
__truediv__Divide the data.
__rtruediv__Divide the data.
divDivide the data.