Changing Array Elements with logical indexing
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
MiauMiau
el 4 de Abr. de 2014
Comentada: per isakson
el 4 de Abr. de 2014
Hi
If I want to change all NaNs in an array A to zero, the following works:
A(isnan(A))=1000
As far as I see the isnan(A) returns nothing but an array of 1's and 0's.
But if I do the following:
B = [ 1 5 8]; B([0 0 1]) = 1000;
to replace the 8 with a 1000, I get an error - why?
0 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 4 de Abr. de 2014
B = [ 1 5 8];
B(logical([0 0 1])) = 1000;
Más respuestas (1)
Ver también
Categorías
Más información sobre Operators and Elementary Operations 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!