from INT64 arithmetic in MATLAB by Petter
Enables int64 Addition, subtraction, multiplication, division and modulus.

rdivide(a,b)
function c = rdivide(a,b)
	checkinputs(a,b);
	c = int64rdivide(int64(a),int64(b));
end

Contact us