python - matplotlib plot of complex valued function -


in matlab plot of complex vector result in plot of imaginary vs real part.

is there equivalent function in matplotlib?

obviously work:

def plotcomplex(c, *args):     plot(real(c), imag(c), args) 

but exist?

seems there no native complex numbers plotting function. build own.


Comments

Popular posts from this blog

testing - Detect whether test has failed within fixture -

AbotX : How do you create a parallel crawler that stays on and can be added to at run time from new requests -

android - Create single AAR file from multiple modules using Gradle -