MATLAB: Unable to find explicit solution

MATLAB

syms b0 b1 x s a n
eqn=b0*(1-(b1/(b1+x*(1-s)))^a)==x+n
solve(eqn, x)
Output:
Warning: Unable to find explicit solution. For options, see help.
> In sym/solve (line 317)
How can i get answer with 'x'?
i want:
x = ....
Thanks!

Best Answer

This warning message shows that MATLAB is not able to find an analytical solution for your equation. You need to substitute the values of b0 b1 x s a n and find a numerical solution using fsolve() or vpasolve().