https://github.com/cran/pracma
Raw File
Tip revision: 26e049d70b4a1c237987e260cba68f6a9413736c authored by Hans W. Borchers on 09 April 2019, 04:10:07 UTC
version 2.2.5
Tip revision: 26e049d
fzsolve.Rd
\name{fzsolve}
\alias{fzsolve}
\title{
  Complex Root Finding
}
\description{
  Find the root of a complex function
}
\usage{
fzsolve(fz, z0)
}
\arguments{
  \item{fz}{complex(-analytic) function.}
  \item{z0}{complex point near the assumed root.}
}
\details{
  \code{fzsolve} tries to find the root of the complex and relatively
  smooth (i.e., analytic) function near a starting point.

  The function is considered as real function \code{R^2 --> R^2} and the
  \code{newtonsys} function is applied.
}
\value{
  Complex point with sufficiently small function value.
}
\seealso{
  \code{\link{newtonsys}}
}
\examples{
fz <- function(z) sin(z)^2 + sqrt(z) - log(z)
fzsolve(fz, 1+1i)
# 0.2555197+0.8948303i
}
\keyword{ math }
back to top