0
Is there any difference between 2-D array and matrix
2 Answers
+ 5
As far as I know (or atleast in numpy).
1-D array ---> Vector
2-D array ---> Matrix
"""
The two dimensional (2D) array in C programming is also known as matrix. A matrix can be represented as a table of rows and columns.
"""
https://www.italki.com/post/question-416020?hl=en
+ 3
Matrix is a methematical object and 2-D array is a data structures which you can use to represent that object in computer