Login
Remember
Register
Ask a Question
How to use of concatenate()
+1
vote
asked
Jul 9, 2021
in
NumPy
by
rajeshsharma
How to use of concatenate()
concatenate
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))
print(“array of z value is : \n”,z)
...