Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
A = 1;
x = LambertW(A);
A_correct = x*exp(x);
assert(abs(A_correct/A-1)<1e-5)
|
2 | Pass |
A = 6.8;
x = LambertW(A);
A_correct = x*exp(x);
assert(abs(A_correct/A-1)<1e-5)
|
3 | Pass |
A = 14;
x = LambertW(A);
A_correct = x*exp(x);
assert(abs(A_correct/A-1)<1e-5)
|
Make the vector [1 2 3 4 5 6 7 8 9 10]
35550 Solvers
Compute a dot product of two vectors x and y
750 Solvers
Vectorize the digits of an Integer
269 Solvers
Volume difference between Ellipsoid and Sphere
96 Solvers
91 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!