klyn.math.NDArray.fmod
method
public fmod(other as NDArray<T>) as NDArray<Double>:
Description
Returns the element-wise floating-point remainder with another array. The result is materialized as `NDArray<Double>`.
a = NDArray<Double>.fromList([7.5, 9.0])
b = NDArray<Double>.fromList([2.0, 4.0])
print(a.fmod(b))