Zeroing matrix elements outside of a certain range.
Afficher commentaires plus anciens
edit: I changed my data example input because it was a bad example that accepted some solution that are not going to work in general
Hi guys, I would like to zero the outer elements of a matrix so that they are not counted in a sum / average.
Basically the matrix is experimental data and each column comes from a different experiment and the first and last datapoints in each experiment are likely to be artefact.
for example:
data = rand(5,2)
and I would like to keep the points 1:4 in the first column (experiment 1) and 2:5 in the second column (experiment 2).
Ideally, I would like to input a matrix of bounds of valid range:
range = [1,4;2,5]
and I would like the data for the index not in that range to be zeroed and ideally without a loop
like
data(index<range(1,:) or index>range(2,:)) = 0
but of course this is not the right line...
A long way would be:
remove = ones(5,2)
remove(range(1,1):range(1,2),1) = 0
remove(range(2,1):range(2,2),2) = 0
data(remove)=0
ah no, even that doesn't work. But even if it would, that's way too inefficient. Sorry, really struggling...
Réponses (2)
A simple approach via indexing -
data = [1;2;3;4;5].*ones(5,2).*[0.5,0.4]
out = [data(1:4,1) data(2:5,2)]
4 commentaires
Dyuman Joshi
le 29 Fév 2024
Modifié(e) : Dyuman Joshi
le 5 Mar 2024
The Gogo
le 5 Mar 2024
Zeroing the data will not exclude it from the average. You should use NaNs,
data = [1;2;3;4;5].*ones(5,2).*[0.5,0.4]
range = [1,0;
inf,1.7]
data(range(1,:)>data | data>range(2,:))=nan
Average=mean(data,1,'omitnan')
4 commentaires
Dyuman Joshi
le 29 Fév 2024
You are assuming that the comparison is made w.r.t some values.
However, the selection of data here is to be done w.r.t values being treated as indices.
The Gogo
le 15 Avr 2024
Catégories
En savoir plus sur Loops and Conditional Statements dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!