/edit:循环不会变慢。我没有正确把握时间。见拉斯曼的回答。
我正在为一个有点长而复杂的函数循环 3 个参数,我注意到两件我不明白的事情:
- 每次连续迭代执行都会变慢,尽管该函数只返回一个结构(我只需要一个字段),每次迭代都会覆盖它。
- 分析器显示
end
最里面的语句for
需要很长时间。
考虑以下示例(我知道这可以很容易地向量化,但据我所知,我调用的函数不能):
function stuff = doSomething( x, y, z )
stuff.one = x+y+z;
stuff.two = x-y-z;
end
以及我如何执行该功能
n = 50;
i = 0;
currenttoc = 0;
output = zeros(n^3,4);
tic
for x = 1:n
for y = 1:n
for z = 1:n
i = i + 1;
output(i,1) = x;
output(i,2) = y;
output(i,3) = z;
stuff = doSomething(x,y,z);
output(i,4) = stuff.one;
if mod(i,1e4) == 0 % only for demonstration, not in final script
currenttoc = toc - currenttoc;
fprintf(1,'time for last 10000 iterations: %f \n',currenttoc)
end
end
end
end
我怎样才能加快速度?为什么每次迭代都比前一次花费更长的时间?我很确定这是一个可怕的编程,对此感到抱歉。