How to fill end of rows of a matrix with NaN values?
조회 수: 16 (최근 30일)
이전 댓글 표시
I have a matrix M, and vector of indices K. I would like to make an element M(k,j) = NaN if j >= K(k). It is possible to do this with a vectorized short methode?
댓글 수: 2
Bob Thompson
2021년 6월 1일
편집: Bob Thompson
2021년 6월 1일
Why not just preallocate the matrix with nan values? Do you have any idea of the max size your matrix could be?
M = nan(max(k),max(j));
답변 (2개)
Sulaymon Eshkabilov
2021년 6월 1일
Hi,
here is a simple solution, e.g.:
M = magic(5);
M(:,end)=nan
댓글 수: 0
Walter Roberson
2021년 6월 2일
M = [1,2,3; 1,2,3; 1,2,3; 1,2,3]
K = [2; 3; 1; NaN]
M((1:size(M,2)) >= K(:)) = nan
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!