Effacer les filtres
Effacer les filtres

Find if a value in a column is greater than a number and exclude the entire row

17 vues (au cours des 30 derniers jours)
I have a numerical array that consists of 9 columns, where I want to consider the values in one of these columns and determine if it is greater than 0.00001. If this condition is met for a particular value I want to exclude all of the other values in the other columns for that row. I have included an example of the data, where in this case I want to specifically look at the values in the 7th column.
Thanks!

Réponse acceptée

Stephen23
Stephen23 le 27 Avr 2015
Modifié(e) : Stephen23 le 27 Avr 2015
If A is that matrix of data, first we can check the seventh column:
A = [...];
idx = A(:,7) > 1e-5;
and then remove those rows using logical indexing:
A(idx,: ) = [];
Or it is likely to be better to keep the original data matrix intact and simply use the index vector idx when you need to extract that particular subset of data. Note you can also invert the index to get the remaining rows:
A = [...];
B = A(~idx,:);
Creating and using indices to access subsets of data is often simpler and faster than actually altering the original data matrices, as it simplifies the memory management that MATLAB has to perform when you change the matrices.
  3 commentaires
R2
R2 le 27 Avr 2015
Any idea how I would do this for a value between two numbers? so > 1e-5 and < 1
Stephen23
Stephen23 le 28 Avr 2015
Modifié(e) : Stephen23 le 28 Avr 2015
Simply define the index with those conditions:
idx = 1e-5<A(:,7) & A(:,7)<1;

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by