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
Post a Comment