make me have question on how to write the matrix, from my understanding, vector in math we normally write it as column vector which we write is vertically. like
[x
y
z]
then when I search it online, the transitional way of the matrix we write it as column vector stacking it horizontally(stacked columns)?
Here is my first confuse point, multiple resource said in math A matrix stacks column vectors horizontally by default, and it looks like this;
But in the end it said matrix shape is n*m, which if we draw it should looks like:
v1,v1,v1
v2,v2,v2
v3,v3,v3
And this is how we normal write it in numpy
So I checked again on GPT and here is the answer but I just want to have someone to double check and put all the thoughts together to help me to understand it. make sure I am not misunderstanding the concept:
I think I thought of getting the point, when we say write matrix horizontally, what I mean is that first column is x axis and second column is y axis, but looks like the matrix is always writing vertically, to represent the point in a coordinate like the matrix [5,0][2,4], even the “2” is y axis for (5,2) but we still write it like that to allign with dot product rule, which is (x1 w 1 + x2 * w2) x is the x-axis value of all the vectors in the matrix
Perhaps you are expecting a hard-and-fast rule that is used universally.
I do not think that exists. Even the instructor of this course isn’t consistent with himself.
The example that instructor is taking is not very good example as the row and column are the same. also he should show the example in numpy… anyways I finally fingered out