Return the fractional and integral parts of an array, element-wise.
LAX-backend implementation of numpy.modf()
.
Original docstring below.
The fractional and integral parts are negative if the given number is
negative.
- Parameters:
x (array_like) – Input array.
- Return type:
tuple
[Array
, Array
]
- Returns:
-