I have m*n matrix. I want keep only those rows whose atleast one element is greater than any specific value such as 1.

1 vue (au cours des 30 derniers jours)
I have m*n matrix. I want keep only those rows whose atleast one element is greater than any specific value such as 1.

Réponse acceptée

Mathieu NOE
Mathieu NOE le 14 Oct 2021
hello
try this
m = 3;
n = 5;
A= 1.15*rand(m,n);
threshold = 1;
a = A>threshold;
rows = find(any(a, 2));

Plus de réponses (0)

Catégories

En savoir plus sur Data Types 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