Is there exist a method in matlab equivalent to c# method Math.IEEERemainder
.
Details about this method can be found here: Is Math.IEEERemainder(x,y) equivalent to x%y?
According to IEEERemainder specifications:
3/2 should be -1
However Matlab method mod(3,2)
returns 1 and rem(3,2)
also returns 1.