Skip to content

IstvanMezo/LambertW-function

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

LambertW-function

This is a C++ code for the complex Lambert W function

Use: Make an initial complex number by using the standard C++ library: complex z{ 1.73, 2.118 }; Then call the LambertW function as follows: cout << LambertW(z,k) <<'\n'; to print out the value of W at the point z on the k-th branch. k must be an integer. If k is left out, it is understood to be 0 (principal branch).

The declaration of LambertW reads as complex LambertW(complex z, int k = 0);

Example can be found in the source code.

About

This is a C++ code for the complex Lambert W function

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages