How to perform the following commands?

1 visualización (últimos 30 días)
M
M el 24 de Mayo de 2022
Respondida: Walter Roberson el 24 de Mayo de 2022
How to perform the following commands:
result1 = m(:,abs(m(2,:))< threshold ); .......... This line I want to exclude zero value also.(I mean if it zero ignore it and look at the next value)
[~,idx] = min(abs(result1(1,:))); ....... This line I want to exclude zero value also. (I mean if it zero ignore it and look at the next value)
  3 comentarios
M
M el 24 de Mayo de 2022
Editada: M el 24 de Mayo de 2022
@Walter Roberson, what about the second line" [~,idx] = min(abs(result1(1,:))); "
I want to exclude zero value also from this, I mea take the next abs(min value) after zero?
Walter Roberson
Walter Roberson el 24 de Mayo de 2022
create a temporary vector that is abs() and replace 0 values with nan and min() that.
Or loop.

Iniciar sesión para comentar.

Respuesta aceptada

Walter Roberson
Walter Roberson el 24 de Mayo de 2022
temp = abs(result1(1,:));
temp(temp==0) = nan;
[~, idx] = min(temp) ;

Más respuestas (0)

Categorías

Más información sobre NaNs 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