fmod()
Signature:
fmod(
divisor: Union[TimeSeries, UnitQuantity, float, int],
in_place: bool = False)
The hec-python-library equivalent of Jython method fmod():
If in_place=True, the instance itself
is modified. In this case the returned value (which can be ignored in python) is the modified instance, which can be used in chaining
methods.
Example:
ts2 = ts1.fmod(5.34)
ts3 = ts1.fmod(ts2)
Signature:
ifmod(divisor: Union[TimeSeries, UnitQuantity, float, int])
Convenience method for executing fmod(...) with in_place=True.
Example:
ts1.fmod(5.34)
ts1.fmod(ts2)