How does one add rows to a numpy array?
I have an array A:
A = array([[0, 1, 2], [0, 2, 0]])
I wish to add rows to this array from
well u can do this :
newrow = [1,2,3] A = numpy.vstack([A, newrow])