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
You can also do this:
newrow = [1,2,3] A = numpy.concatenate((A,newrow))