I have a matrix
m = np.zeros((5,5))
and what to have a view on the last row
row = m[-1]
however if I add a column to m:
m = np.c_[m[:,:2],[0,0,1,1,1],m[:,2:]]
and print out row I don't get the new column.
Is there any way to get the change without use the line
row = m[-1]
again?