Borrar filtros
Borrar filtros

Error in if condition

2 visualizaciones (últimos 30 días)
Ararat Cetinkaya
Ararat Cetinkaya el 24 de Mzo. de 2020
Respondida: Sriram Tadavarty el 24 de Mzo. de 2020
hi everybody,
I have a two different variables; enthleft and enthright. I want to turn NaN values to Zero but when both variables get NaN values just one of it turn to Zero. How to solve this porblem?
if any(isnan(enthleft), 'all');
enthleft = 0;
elseif any(isnan(enthright), 'all');
enthright = 0;
end

Respuesta aceptada

Geoff Hayes
Geoff Hayes el 24 de Mzo. de 2020
Ararat - don't use the elseif and just use two if statements (since you want to apply a specific action to both variables)
if any(isnan(enthleft), 'all');
enthleft = 0;
end
if any(isnan(enthright), 'all');
enthright = 0;
end
By the way, your above code will set all elements of the enthleft or enthright arrays to zero if at least one element is NaN. Is this the intended behaviour?

Más respuestas (1)

Sriram Tadavarty
Sriram Tadavarty el 24 de Mzo. de 2020
Hi Ararat,
Based on the information provided, the following will help
if any(isnan(enthleft), 'all') && any(isnan(enthright), 'all')
enthleft = 0;
enthright = 0;
end
Hope this helps.
Regards,
Sriram

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by