Skip to content

Instantly share code, notes, and snippets.

@sguzman
Created September 21, 2021 23:51
Show Gist options
  • Save sguzman/dd0b20cdbf5aa0e40ecab19608d192a0 to your computer and use it in GitHub Desktop.
Save sguzman/dd0b20cdbf5aa0e40ecab19608d192a0 to your computer and use it in GitHub Desktop.
Pretty Complex Graph
Export[CloudObject["plot"],
ComplexPlot[Exp[z^2 + 1], {z, -2 - 2 I, 2 + 2 I}
, PlotPoints -> 100
, PlotLegends -> "Expressions"
, MeshShading -> {{Automatic, Black}, {White, Automatic}}
, Mesh -> {Range[-10, 10, .5], Range[-10, 10, .5]},
MeshFunctions -> {Re[#2] &, Im[#2] &}, MeshStyle -> {White, Black}
]
, "PNG"
]
@sguzman
Copy link
Author

sguzman commented Sep 21, 2021

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment