Borrar filtros
Borrar filtros

I'm trying to check for a NaN value in an array in if condition expression but the control is not entering inside if condition.

1 visualización (últimos 30 días)
For example :
A = [1 2 3 NaN 3 5]; if isnan(A) ~= 0 %... end

Respuesta aceptada

KSSV
KSSV el 12 de Oct. de 2017
A = [1 2 3 NaN 3 5];
idx = isnan(A) ; % all NaN indices at once
for i = 1:length(A)
if isnan(A(i))
fprintf('%d index value is NaN\n',i)
end
end

Más respuestas (0)

Categorías

Más información sobre Creating and Concatenating Matrices 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