cplot
cplot copied to clipboard
:rainbow: Plot complex functions
When creating multiple cplots in Jupyter Notebook with `ipympl` and `%matplotlib widget`, the first plot looks good. The second will be overlayed to the first, and so on, making the...
When creating multiple plots inside a Jupyter Notebook with `ipympl` and `%matplotlib widget`, the first plot look ok, the second will be overlay-ed to the first and so on... ```python...
Rick Reusser's fantastic work (e.g., [here](https://observablehq.com/@rreusser/locally-scaled-domain-coloring-part-1-contour-plots)) is based on [D3's rainbow](https://github.com/d3/d3-scale-chromatic#cyclical). See also [Mike Bostok's work](https://bl.ocks.org/mbostock/310c99e53880faec2434). The rainbow is not uniform in brightness, but perhaps we can make something out...
- [x] [Lambert series](https://en.wikipedia.org/wiki/Lambert_series) - [ ] [Boys function](https://pubs.aip.org/aip/jcp/article/155/17/174117/565590/A-fast-algorithm-for-computing-the-Boys-function) - [ ] [Struve Functions](https://en.wikipedia.org/wiki/Struve_function) - [ ] [Polylogarithm](https://en.wikipedia.org/wiki/Polylogarithm) - [ ] [Fox H function](https://en.wikipedia.org/wiki/Fox_H-function) - [ ] [Meijer G-Function](https://en.wikipedia.org/wiki/Meijer_G-function) -...
Hello, I would like to point out a bug in the labeling of the abs colorbar. The two limits 0 and ∞ should also invert when one inverts the abs_scaling,...
Phase plots show the phase of complex numbers, i.e. a representation of the arg. `plot_phase` did just that until a renaming accident happened in ff334cb ("add plot_contours()", 2021-10-29). Restore the...
Let me start by thanking Nico Schlömer for his development of the cplot library. It has been very useful for me. I would like to know how I can invert...
I used cplot to graph a complex function, and I want to mark certain points in the complex plane. How can I do this?
Right now `cplot` has made the decision that a complex phase of zero (pi) corresponds to green (purple) hue. Another obvious choice is for a complex phase of zero (pi)...