1 2 3 4 5 6 7 8
function test_addition() a = 1; b = 2; d = float(b); e = float(a) c = e+d; disp(c); endfunction