I was wondering if there is an easy way to combine two vectors (x and y)
into a single object to be ploted with the plot() method in matplotlib.
Untill now, I did something like:
import matplotlib.pyplot as plt
x = np.nplinspace(0,5,1000)
y = np.ones_like(x)
plt.plot(x,y) # need an object here
plt.show()
But I would like to use plt.plot(my_object, 'r').
I tried to combine x and y in lists of lists, NumPy matrices, with zip,
etc...but it only plots a collection of plots.
Thanks a lot in advance.
------------------------------------------------------------------------------
Oracle to DB2 Conversion Guide: Learn learn about native support for PL/SQL,
new data types, scalar functions, improved concurrency, built-in packages,
OCI, SQL*Plus, data movement tools, best practices and more.
http://p.sf.net/sfu/oracle-sfdev2dev
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users