How can I separate inf
and -inf
from each other?
I have matrix that contains inf
and -inf
and I want to replace them with 1e6
and -1e6
respectively.
for example,
a = [1 2 3 0 3 4]./[1 1 1 0 1 0];
b = log2([0 2 1 2 1 2]);
c = cat(1,a,b);
which is,
c = [ 1 2 3 NaN 3 Inf;
-Inf 1 0 1 0 1];
I want,
newc = [ 1 2 3 NaN 3 1e6;
-1e6 1 0 1 0 1];
I couldn't find a function that separates them.
Thanks.
You can detect
inf
usingisinf()
, and you can detect sign usingsign()
. Combine the two: