does it take longer for a MATLAB script to execute because the computer has to convert the script into a language that it understands? Also, does that take longer than actually executing the code in some cases?
x = ones(1000,1000,1000)
x = rand(x)
x = erf(x)
Now, let's say I have a Fortran...