29.09.2011 17:38, Benjamin Root kirjoitti:
[clip]
> but I cannot use "d=np.concatenate(d,np.array(np.nan))" to finish this job.
[clip]

Do

    d = np.concatenate([d, np.array([np.nan])])

or

    d = np.hstack([d, np.nan])

or

    d = np.r_[d, np.nan]


------------------------------------------------------------------------------
All the data continuously generated in your IT infrastructure contains a
definitive record of customers, application performance, security
threats, fraudulent activity and more. Splunk takes this data and makes
sense of it. Business sense. IT sense. Common sense.
http://p.sf.net/sfu/splunk-d2dcopy1
_______________________________________________
Matplotlib-devel mailing list
Matplotlib-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-devel

Reply via email to