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

plus(a,b)
function c = plus(a,b)
	checkinputs(a,b);
	c = int64plus(int64(a),int64(b));
end

Contact us at files@mathworks.com