How can I make my code run faster?
1 次查看(过去 30 天)
显示 更早的评论
Hi,
Hope someone can help.
I would like to improve my code and make it run faster, but I'm not sure what I need to do.
%size of d 31003x50x13
for anim=1:size(d,3)
for trl=1:size(d,2)
for i=1:size(d,1)
if d(i,trl,anim) >= 0.05
C(i,trl,anim)= 1;
elseif -0.05<d(i,trl,anim) && d(i,trl,anim)<0.05
C(i,trl,anim) = 0;
else d(i,trl,anim) < -0.05
C(i,trl,anim) = -1;
end
end
end
end
Thanks
0 个评论
采纳的回答
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Type Conversion 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!