REVISED: Sunday, March 3, 2013
You will learn the difference between a Matrix versus a Vector.
I. MATRIX
A matrix is a rectangular array of numbers written between square brackets [ ].
The dimension of a matrix is written as the number of rows times the number of columns.
A matrix gives you a way to organize, index, and access lots of data.
A matrix is identified rows by columns.
Matrix Aij is shown below:
C1 C2 C3 C4
1 2 3 4 R1
5 6 7 8 R2
9 1 2 3 R3
A matrix is a rectangular array of numbers written between square brackets [ ].
The dimension of a matrix is written as the number of rows times the number of columns.
A matrix gives you a way to organize, index, and access lots of data.
A matrix is identified rows by columns.
Matrix Aij is shown below:
C1 C2 C3 C4
1 2 3 4 R1
5 6 7 8 R2
9 1 2 3 R3
The above is a three row four column matrix or 3x4 or
R3x4.
Matrix elements or entries inside the matrix Aij are referred to as ith row jth column.
Matrix names are upper case.
II. VECTOR
A vector is a special case of a matrix.
A vector is a matrix that only has one column.
Shown below is the three dimensional vector xi, meaning it has three rows and one column.
A vector is a special case of a matrix.
A vector is a matrix that only has one column.
Shown below is the three dimensional vector xi, meaning it has three rows and one column.
C1
1 R1
5 R2
9 R3
The above three row one column matrix is a special case of a matrix, called a vector. It is 3x1 or a three dimensional vector R3.
Vector elements or entries inside vector xi are referred to as ith row.
There are two generally accepted ways to index a vector; they are called 1-index and 0-index. The difference is the starting number used for the index. If you are using modern day computer programs, most computer programs index starting with zero. If whoever created the vector did not use modern day computer programs they will index starting with 1.
How to Link to My Home Page
It will appear on your website as:"Link to ELCRIC OTTO CIRCLE's Home Page"
No comments:
Post a Comment