log2(0)=-inf problem
2 次查看(过去 30 天)
显示 更早的评论
Hallo,
my problem is that i want to set the quantity log2(0), so as log2(0)==0 {normally it is log2(0)==-inf}. is there a simple way to do this?
Thanks you in advance.
0 个评论
回答(1 个)
Sean de Wolski
2011-10-5
Write your own log2 and call it:
function out = mylog2(in)
out = log2(in);
out(~in) = 0;
end
Add the F/E output options if desired.
It would be very dangerous to overload this function since it's probably used elsewhere.
4 个评论
Sean de Wolski
2011-10-5
I'm holding to ~x, logical and foolproof, no, doh! can't convert nan to logical arghh...
x==0
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 File Operations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!