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 = uint64rdivide(uint64(a),uint64(b));
end

Contact us at files@mathworks.com