Expand description
This crate provides an implementation of the Wright Omega function.
The Wright Omega function is defined as the solution to the equation
ω + log(ω) = z
. This crate provides two functions for evaluating the
Wright Omega function: wright_omega
and wright_omega_ext
.
The wright_omega
function returns the value of the Wright Omega function
for a given complex number z
. The wright_omega_ext
function returns
the value of the Wright Omega function, as well as the last update step,
the penultimate residual, and an estimate of the condition number.
Re-exports§
pub use wright_omega::wright_omega;
pub use wright_omega::wright_omega_ext;