Login
Remember
Register
Ask a Question
how to How to use of concatenate() with axis=0
+1
vote
asked
Jul 9, 2021
in
NumPy
by
rajeshsharma
how to How to use of concatenate() with axis=0
concatenate-function
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jul 9, 2021
by
rajeshsharma
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]
...