02 Matrices And Vectors Instructionsl

02_matrices-and-vectors_instructionsl

User Manual:

Open the PDF directly: View PDF PDF.
Page Count: 2

Download02 Matrices-and-vectors Instructionsl
Open PDF In BrowserView PDF
Matrices and Vectors
Matrices are 2-dimensional arrays:

[ ]
a

b

c

d

e

f

g

h

i

j

k

l

The above matrix has four rows and three columns, so it is a 4 x 3 matrix.
A vector is a matrix with one column and many rows:

[]
w
x
y
z

So vectors are a subset of matrices. The above vector is a 4 x 1 matrix.
Notation and terms :
A ij refers to the element in the ith row and jth column of matrix A.
A vector with 'n' rows is referred to as an 'n'-dimensional vector.
v i refers to the element in the ith row of the vector.
In general, all our vectors and matrices will be 1-indexed. Note that for
some programming languages, the arrays are 0-indexed.
Matrices are usually denoted by uppercase names while vectors are
lowercase.
"Scalar" means that an object is a single value, not a vector or matrix.
R refers to the set of scalar real numbers.
R n refers to the set of n-dimensional vectors of real numbers.
Run the cell below to get familiar with the commands in Octave/Matlab. Feel free
to create matrices and vectors and try out different things.
% The ; denotes we are going back to a new row.
A = [1, 2, 3; 4, 5, 6; 7, 8, 9; 10, 11, 12]

% Initialize a vector
v = [1;2;3]
% Get the dimension of the matrix A where m = rows and n = columns
[m,n] = size(A)
% You could also store it this way
dim_A = size(A)
% Get the dimension of the vector v
dim_v = size(v)
% Now let's index into the 2nd row 3rd column of matrix A
A_23 = A(2,3)



Source Exif Data:
File Type                       : PDF
File Type Extension             : pdf
MIME Type                       : application/pdf
PDF Version                     : 1.4
Linearized                      : No
XMP Toolkit                     : Adobe XMP Core 5.6-c015 91.163280, 2018/06/22-11:31:03
Create Date                     : 2018:12:07 06:20:16Z
Creator Tool                    : Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36
Modify Date                     : 2018:12:07 14:23:02+08:00
Metadata Date                   : 2018:12:07 14:23:02+08:00
Producer                        : Skia/PDF m70
Format                          : application/pdf
Document ID                     : uuid:b2b161bc-db5d-422a-aabc-fd278aa85fc6
Instance ID                     : uuid:cd04b889-e2bf-427f-a2ee-370491c18954
Page Count                      : 2
Creator                         : Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36
EXIF Metadata provided by EXIF.tools

Navigation menu