Hi all,
I've written a simple function to test the compiler:
function f = test()
tic
for i = 1:10000000
A = 2+5;
B = A/4;
end;
toc
The .m file run in about 0.1 seconds.
After I compile it(mcc -x test.m) the execution time increases to ~3 seconds.
I get the same effect if I compile it...