Se não me engano tem uma formula para isso
f(x) = a \times \log(bx) + c
Se for em python tu consegue implementar dessa forma:
def softcap(x, a=10, b=0.01, c=0):
return a * math.log(b * x + 1) + c
Se não me engano tem uma formula para isso
f(x) = a \times \log(bx) + c
Se for em python tu consegue implementar dessa forma:
def softcap(x, a=10, b=0.01, c=0):
return a * math.log(b * x + 1) + c