Matlab cody does not support lambertw. Try to create a lambert's w function yourself.
Lambert's W is the function that solves
x*exp(x) = A;
given the value of A.
Read more about Lambert's W here.
Though it is not particularly appropriate for this particular function, consider using Newton-Raphson's method. Since all test cases will converge if starting with 0.
The relative tolerance for the result of x*exp(x) compared to A is 1e-5.
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers54
Suggested Problems
-
Determine if input is a perfect number
267 Solvers
-
How long do each of the stages of the rocket take to burn?
559 Solvers
-
Calculate the Number of Sign Changes in a Row Vector (No Element Is Zero)
969 Solvers
-
Back to basics - mean of corner elements of a matrix
467 Solvers
-
762 Solvers
More from this Author9
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
See Cleve Moler's implementation at http://blogs.mathworks.com/cleve/2013/09/02/the-lambert-w-function/