How to rewrite my code without loops?
3 ビュー (過去 30 日間)
古いコメントを表示
How to rewrite this code without loops:
Grad = zeros(size(x));
for i=1:length(x)
for j=1:length(f)
Grad(i) = Grad(i) + 2*GradW(i,j).*dev(j);
end
end
Thanks.
0 件のコメント
採用された回答
Walter Roberson
2021 年 8 月 22 日
lenth(f) has no obvious relationship to any of the rest of the code. Is f shorter than dev is so you are only wanting to do a subset of dev ? If you are wanting all of dev then use the number of elements in dev, not the number in f.
You initialize Grad to size(x) but you only iterate i as the length(x) not as the number of elements in x.
It is not obvious that length(x) or size(x) is related to the size of GradW or dev.
GradW = (1:5).*(2:4).'
dev = [-2 3 -4 5 -6]
x = randi(9, 1, size(GradW,1)) %contents not actually used, but shape is
f = randi(9, 1, size(GradW,2)) %contents not actuall yused, but length is
answer1 = reshape(2*GradW * dev(:), size(x))
Grad = zeros(size(x));
for i=1:length(x)
for j=1:length(f)
Grad(i) = Grad(i) + 2*GradW(i,j).*dev(j);
end
end
answer2 = Grad
You can see the probable simple formula at answer1, but because your sizes are not related to the variables you calculate on, we cannot be sure.
It seems odd to want to force the answer to be the shape of x; it would make more sense to let it be a column vector (in which case skip the reshape() of answer1)
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Language Support についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!