I am using matplotlib to plot a graph with the points ([0,0,0],[0,0,1],[0,0,2],...[255,255,255]) on x-axis for that i am using list:
from mpl_toolkits.mplot3d import Axes3D
x=[]
for i,j,k in product(xrange(256), repeat=3):
x.append([i,j,k])
y=[]
for count in x:
y.append(probability[count]) # this is how my probability array is stored
pylab.figure(0)
pylab.plot(x,y,'b')
pylab.show()
This idea I have borrowed from previous posts. I am new to python, so please help. The question is the above code gives "Memory Error". Can someone provide an efficient way to append elements to 'x'
append(). It's only practical to use Python for things that take up only so much memory. Is there any specific reason as to why you're doing this, and is there a more efficient way than going through all 16 million values? – Makoto Jan 27 at 17:36