I am trying to solve the equation
$$ x \ln (x) = a, $$
where $x$ is a variable and $a$ is a given constant, using Matlab and the lambertw function.
Not really sure exactly what to type into Matlab to solve this equation!
Thanks in advance for any help!
syms a xthensolve(x*log(x) == a)? To write this I just looked at this help page, which I found with google. – Antonio Vargas Feb 14 '14 at 17:39