Replace one NAN with zero in a row vector without a loop
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Zeynab Mousavikhamene
el 19 de Ag. de 2019
Respondida: Raj
el 19 de Ag. de 2019
I have a row vector that its size is changing in each run. Some of its elements might be NAN and I want to replace those with zero.
How can I do that without need to have a loop? isnan(A) finds nan values but I need to replace and I want to avoid loop.
0 comentarios
Respuesta aceptada
Raj
el 19 de Ag. de 2019
A(isnan(A)) = 0; % replaces NAN elements of A matrix by Zero.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Elementary Math en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!