Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
mat ops to locate values and place into new matrix
조회 수: 1 (최근 30일)
이전 댓글 표시
column width should be length of longest row of 9s. I can do this by loops and placing the values into a preallocated zeroes matrix but its slow. The actual matrix is very very large.
if true
a = [1 9 3 5 2 7;
9 9 9 9 1 2;
6 5 0 3 9 9;
6 2 1 7 8 7;
4 9 9 9 9 9]
out = [9 0 0 0 0 0;
9 9 9 9 0 0;
9 9 0 0 0 0;
0 0 0 0 0 0;
9 9 9 9 9 0]
end
댓글 수: 0
답변 (1개)
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!