I have been searching for this almost all day. The general form of the log transformation is
s = clog(1+r)
where
c = 0.1
The opposite is inverse log transformation(book). What will be the inverse log transformation? Is it
s = exp(r)?
Could not get right output.


Exp()will only be an inverse ofLog()ifLog()is the natural logarithm. If yourLog()is using a different base (base 2, base 10, any other arbitrary base), then you will need to use the different base in place ofeinExp().Update
Try
10^(x/0.1)-1.x/0.1undoes the0.1 *operation,10^undoes thelog(), and-1undoes the+1.