I'm new to numpy and require to accomplish the following task:
from:
a = array([[1,3,4],[1,2,3]...[1,2,1]])
(add one element to each row) to:
a = array([[1,3,4,x],[1,2,3,x]...[1,2,1,x]])
How can i accomplish this?
I have tried doing stuff like a[n] = array([1,3,4,x])
but numpy complained of shape mismatch. Tried iterating through a and append element x to each item but the changes are not reflected.
Any idea?