Can someone do this calculation without for loops ?
1 回表示 (過去 30 日間)
古いコメントを表示
a = [1 2 3; 4 5 6];
b = [ 1 2 3];
for n = 1: size(a,1)
for m = 1:size(a,2)
k(n,m,:)= b.*b*a(n,m)
end
end
0 件のコメント
採用された回答
その他の回答 (2 件)
Joakim Magnusson
2016 年 6 月 15 日
Do you mean like this?
fun=@(a,b) b.*b*a
k = bsxfun(fun,a,b)
0 件のコメント
Azzi Abdelmalek
2016 年 6 月 15 日
編集済み: Azzi Abdelmalek
2016 年 6 月 15 日
a = [1 2 3; 4 5 6];
b = [ 1 2 3];
bb=reshape(b.*b,1,1,[])
out=bsxfun(@times,a,bb)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Fourier Analysis and Filtering についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!