Hello,
I need to take the log difference of a matrix, i.e. log(M[2 rows(M):,]/M[1:rows(M)-1,]).
Unfortunately, M has elements equal to zero. I need to replace the nan's and inf's
with 0's. This almost works
M = isnan(M) ? 0 : M
but does not remove inf's. Any sugestions?