Problem 17. Find all elements less than 0 or greater than 10 and replace them with NaN
1 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
per isakson
2013-7-14
编辑:per isakson
2013-7-14
Should be
x(u) = NaN;
without blips. What did the error message say?
3 个评论
Image Analyst
2013-7-14
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
2013-7-14
@Image Analyst: To be nit-picking: 'NaN' is a 3 character array. But a char uses 2 bytes, such that 'NaN' has 6 bytes.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!