Skip to content

JuliaHolomorphic/ComplexPhasePortrait.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ComplexPhasePortrait.jl

Build Status Coverage

This package is a Julia implementation of the phase portrait ideas presented in Elias Wegert's book "Visual Complex Functions".

Installation

From the Julia command prompt:

Pkg.clone("git://github.com/JuliaHolomorphic/ComplexPhasePortrait.jl.git")

Examples

There is so far one exported function, portrait, and here I will try to detail its use. First we need function data over a grid.

using ComplexPhasePortrait

nx = 1000
x = range(-1, stop=1, length=nx)
Z = x' .+ reverse(x)*im

f = z -> (z - 0.5im)^2 * (z + 0.5+0.5im)/z
fz = f.(Z)

Now a basic phase plot.

img = portrait(fz)

proper phase plot

Now for a basic plot using NIST coloring.

img = portrait(fz, ctype="nist")

nist coloring

Lines of constant phase are given by

img = portrait(fz, PTstepphase)

constant phase

Lines of constant modulus are given by

img = portrait(fz, PTstepmod)

constant modulus

Finally, a conformal grid is given by

img = portrait(fz, PTcgrid)

conformal grid