- #1
guiismiti
- 3
- 0
Hello,
I need to find the inverse function of the following equation
Where a, b and c are constants.
I have experimental points that fit to this equation and I want to use these values in the inverse funtion to linearize it.
I have tried to use a few tools available online, but the output functions did not work, which made me think if it is actually possible to do it.Can anybody help me?
Thanks in advance.
Edited: solved
I need to find the inverse function of the following equation
Code:
y = a * ((exp(-b * x)) + (c * (1 - (exp(-b * x)))))
Where a, b and c are constants.
I have experimental points that fit to this equation and I want to use these values in the inverse funtion to linearize it.
I have tried to use a few tools available online, but the output functions did not work, which made me think if it is actually possible to do it.Can anybody help me?
Thanks in advance.
Edited: solved
Code:
x = (1 / (-b)) * (LN(((a * c) - y) / (a * (c - 1))))
Last edited: