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!