Need to fill out skipped rows in a matrix
1 view (last 30 days)
Show older comments
Davis Philip Reina-Guerra
on 7 Oct 2022
Commented: Davis Philip Reina-Guerra
on 7 Oct 2022
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 Comments
Accepted Answer
Davide Masiello
on 7 Oct 2022
Edited: Davide Masiello
on 7 Oct 2022
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
More Answers (0)
See Also
Categories
Find more on Matrix Indexing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!