how velocize it? (vectorize it)
2 ビュー (過去 30 日間)
古いコメントを表示
a=magic(8)
b=[1 3 2 4 5 5 8 3] % (b is always >0)
[~,c]=size(a);
B=a;
for i=1:c
if b(i)>1
B(1:b(i)-1,i)=0;
end
end
B
0 件のコメント
採用された回答
Bruno Luong
2023 年 10 月 8 日
a=magic(8)
b=[1 3 2 4 5 5 8 3] % (b is always >0)
B = a.* ((1:size(a,1))' >= b)
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Assembly についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!