Analytic - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

RootFinding

  

Analytic

  

zeros of an analytic function in one variable

  

AnalyticZerosFound

  

zeros of an analytic function in one variable

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

Analytic(f, z, a+c*I..b+d*I, ...)

Analytic(f, z, re=a..b, im=c..d, ...)

AnalyticZerosFound()

Parameters

f

-

an analytic function of z (or an equation defining such)

z

-

(optional) an unknown

a, b, c, d

-

real constants

Description

• 

For an analytic function  of z, Analytic attempts to find all complex zeros of  within the rectangular region ,  in the complex plane. It may also find some zeros outside but close to the boundary of the region.

• 

Setting of infolevel[RootFinding:-Analytic] to be between 1 and 7 will result in detailed information concerning the solving process being displayed.

• 

The AnalyticZerosFound() calling sequence returns a sequence of the zeros which have been located. These may be accessed after Analytic returns, or if its computation is interrupted.

Options

  

The remaining arguments are interpreted as options.

• 

digits=n

  

Set Digits := n; for the purpose of the calculation. Thus the accuracy of the zeros computed is usually less than n digits since only n digits are used for the calculation. The default is the value of Digits already set by the user; the minimum is 5. If hardware floats are in use, this default may be increased to a maximum of trunc(evalhf(Digits)).

• 

iterations=n

  

The number of iterations of Newton's method to be applied for each starting point. The default is 50.

• 

continue

  

Continue with an interrupted calculation, remembering already found zeros. This option may also be used to change the boundaries of the region without losing already found zeros. This option may only be used with the same function and variable as the original call.

• 

plot

  

Return a plot of the zeros instead of the zeros. Note, the zeros are still available to the user through the command RootFinding:-AnalyticZerosFound(), and are available until the routine RootFinding:-Analytic is once again used.

• 

 and

  

When plotting, the zeros will be reduced modulo  in the real direction and modulo  in the imaginary direction. With the option 'modulo' they will be reduced to the region  and ; With 'modulo_s' they will be reduced to the region , .

• 

extra

  

For plotting purposes, remember the rectangular subregions in which the zeros were isolated, as well as the traces of the Newton iterations. These will appear when the zeros are plotted.

• 

viewall

  

For plotting purposes, view the entire specified region. Do not restrict the viewing region to the area where zeros are found.

Examples

(1)

(2)

(3)

(4)

(5)

(6)

(7)

(8)

(9)

(10)

(11)

(12)

The following examples may be executed in Maple.

See Also

fsolve

plot

RootFinding

 


Download Help Document