+1 vote
in NumPy by
how to How to use of concatenate() with axis=0

1 Answer

0 votes
by
x=np.array([[1,2],[3,4]])

y=np.array([[5,6]])

z=np.concatenate((x,y),axis=None) #

print(“\narray of z value is with o axis : “,z) # [ 1 2 3 4 5 6]

Related questions

+1 vote
asked Jul 8, 2021 in NumPy by rajeshsharma
+1 vote
asked Jul 9, 2021 in NumPy by rajeshsharma
...