Need to fill out skipped rows in a matrix
조회 수: 1 (최근 30일)
이전 댓글 표시
Davis Philip Reina-Guerra
2022년 10월 7일
댓글: Davis Philip Reina-Guerra
2022년 10월 7일
I have a data analysis code which spits out values by experimental trials 1-10. The problem is that some trials (by design) do not produce a value, meaning some of the data is "complete" and some is "partial". I need help filling out the partial data with the missing trials so that all data matrices are 10x2 and it is straightforward to perform operations on them.
I think this example illustrates my point best. How do I approach this? Even just links to relevant documentation would help a ton, I am still fairly new to the MATLAB universe
댓글 수: 0
채택된 답변
Davide Masiello
2022년 10월 7일
편집: Davide Masiello
2022년 10월 7일
Take this example
complete = [(1:10)',rand(10,1)]
partial = [sort(randperm(10,6))',rand(6,1)]
You can apply the following to you dataset.
missing_n = ~any(partial(:,1) == 1:10,1)
newpartial = zeros(size(complete));
newpartial(missing_n,:) = [find(missing_n)',nan(nnz(missing_n),1)];
newpartial(~missing_n,:) = partial;
partial = newpartial
추가 답변 (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!