MATLAB: Modular operation in matlab

modulo

I hav an equation 2750 = x mod 7829. How do i calculate x in matlab?

Best Answer

Assuming you mean 2750 = mod(x,7829), there are infinitely many solutions:
x = 2750 + n * 7829, for any integer n