Python Programming - Arrays - Discussion

Discussion Forum : Arrays - General Questions (Q.No. 59)
59.
What is the purpose of the NumPy function numpy.concatenate((arr1, arr2), axis=0)?
Joins the arrays along the columns.
Joins the arrays along the rows.
Creates a new array with the maximum values from both arrays.
Computes the dot product of the arrays.
Answer: Option
Explanation:
The numpy.concatenate() function joins the arrays along the specified axis, in this case, along the rows.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.