Vectorization for dependent loops
1 次查看(过去 30 天)
显示 更早的评论
Hi i want vectorize this code :
a(1)= 1 ;
for g=1:len_1 % len_1 >> len_2
for c=0:min(g-1,len_2) % the use of min() is related to the positive sign of index g-c
a(g+1)=a(g+1)+k(c+1)*k(g-c)
end
end
in the same way as this situation:
k=zeros([1,10000]);
for i=1:10000;
k(i)=rand;
end
k=zeros([1,10000]);
a=1:10000;
k(a)=rand;
Any idea?
0 个评论
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Digital Filter Analysis 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!