Problem 17. Find all elements less than 0 or greater than 10 and replace them with NaN
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
i don't know what wrong with my code its very frustating really
( ̄へ ̄)
here my code:
function y = cleanUp(x)
u=find(x<0 | x>10);
x(u)='NaN';
y = x;
end
0 comentarios
Respuesta aceptada
per isakson
el 14 de Jul. de 2013
Editada: per isakson
el 14 de Jul. de 2013
Should be
x(u) = NaN;
without blips. What did the error message say?
3 comentarios
Image Analyst
el 14 de Jul. de 2013
Yes they're different. NaN is a special object with special meaning. 'NaN' is a 3 byte character array that has no special meaning whatsoever. It just happens to have those characters in it but it has no relation to the real, special NaN object whatsoever.
Jan
el 14 de Jul. de 2013
@Image Analyst: To be nit-picking: 'NaN' is a 3 character array. But a char uses 2 bytes, such that 'NaN' has 6 bytes.
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical 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!