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

3 visualizaciones (últimos 30 días)
I have m*n matrix. I want keep only those rows whose atleast one element is greater than any specific value such as 1.

Respuesta aceptada

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

Más respuestas (0)

Categorías

Más información sobre Data Types en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by