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

sql - invalid in the select list because it is not contained in either an aggregate function -

Angularjs unit testing - ng-disabled not working when adding text to textarea -

How to start daemon on android by adb -