>>>>> "Esdras" == Esdras Caleb <[EMAIL PROTECTED]> writes:

    Esdras> I have esperimental data here and i want plot them to do a
    Esdras> grafic and cut the poits who are too out but whem i use
    Esdras> plot(Array1,Array2,+) i obtaim a perfect line and i do it
    Esdras> in gnu plot and see the ploted points arent a perfect
    Esdras> line, someone can tell me how I can simple draw the points
    Esdras> in the grafic using mathplot?

Try using a mask, eg examples/masked_demo.py.  Using nan should work
as well


from pylab import figure, show, nx

x = nx.arange(0.0, 10.0)
y = x**2
x[3] = nx.nan
fig = figure()
ax = fig.add_subplot(111)
ax.plot(x, y)
show()

JDH

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to