I am writing a MATLAB m file which looks like this:
for k = 1:100
func_a();
func_b();
func_c();
end
where func_a, func_b, and func_c are three different m files each has about 500 lines. Now, I want to know how MATLAB compiles this code. Does is compile each of the functions 100 times (which would be very tedious) or MATLAB just compile each function once.
Thanks
