include("Riemann.jl");
The WebIO Jupyter extension was not detected. See the WebIO Jupyter integration documentation for more information.
zc, w = Riemann_data(w->w^2;)
fig1 = Plot(surf(zc, w;part=z->real(z)),
Riemann_layout(L"\Re(\sqrt{z})";ztitle="ℜ(f(z))"))
r = range(0, 2, 100)
θ = range(-π, π, 200)
w = r * cis.(θ)' #w=r exp(iθ)
zc = @. (w^2 -1.0)^2
fig3 = Plot(surface(x= real(zc), y=imag(zc), z=real(w),
coloraxis="coloraxis",
surfacecolor=angle.(w)),
Riemann_layout(L"\Re(\sqrt{1+\sqrt{z}})";ztitle="Re(f(z))"))