Effacer les filtres
Effacer les filtres

Selecting columns that meet a condition

11 vues (au cours des 30 derniers jours)
H
H le 4 Fév 2022
Commenté : H le 4 Fév 2022
Hi,
I have a matrix of 12x101.
I am looking to then select, out of the matrix, collumns that have a value above a threshold.
E.g- A=
88 79 56
91 89 95
94 87 84
For B =A>90
B=
88 56
91 95
94 84
I feel like this should be simple, but I am unsure.
Thank you.

Réponse acceptée

Davide Masiello
Davide Masiello le 4 Fév 2022
Try with this:
A = [88 79 56; 91 89 95; 94 87 84];
threshold = 90;
l = find(sum(A>threshold,1));
B = A(:,l);

Plus de réponses (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by