General info and matlab

2 MATLAB in ten minutes

0. Why?

MATLAB is a trademark name for a software package, and an acronym for Matrix Laboratory. It is widely used as a tool for linear algebra in engineering, control theory and other applications. Recent versions have the capability to carry out many routines on large matrices relatively efficiently.

1. Find a computer

MATLAB is available in all student PC labs on campus via Apps Everywhere. To get MATLAB on an individual PC such as a laptop, go to the ISS helpdesk in the learning zone. Current laptops have the capacity to host MATLAB, although the wireless connections impose limitations on the speed of operations.

2. Connect to MATLAB

Click on the MATLAB icon, and one or more windows will open. The one you mainly require is the command window, which has a prompt, at which you should type all commands,

3. Type in some matrices

MATLAB uses [ to start a matrix, ] to finish a matrix, comma , to separate the entries of a matrix, and semi colon ; to finish a row in a matrix.

(i) So when you type in

A=[1,2,3;4,5,6]

out comes

A=[(123456)].

(ii) Now type in

B=[1,2;3,4;5,6]

out comes

B=[(123456)],

then to get the transpose, type

B

and out comes

[(135246)].

(iii) To obtain a 3×3 identity matrix, introduce

eye(3)

and out comes

[(100010001)]

4. Do some arithmetic

i) To add B and A, just type

B+A

ii) To multiply the entries of B by 2, type

2*B

iii) To multiply A on the right by B, type

D=A*B

and out comes

D=[(22284964)]

iv) Now multiply B on the right by A by making

E=B*A

and add the identity to make

F=eye(3)+E

5. Try out some commands

i) To find the row reduced echelon form of E, type

rref(E)

ii) To find the eigenvalues of E, type

eig(E)

and you get a list of the approximate numerical eigenvalues.

iii) To find the inverse of F, type

inv(F)

and the inverse matrix appears with approximate numererical entries.

iv) To get the exact inverse in terms of rational fractions, type

formatrat

then

inv(F)

v) The determinant is given by

det(F)

vi) The characteristic polynomial of F is det(sI-F), and the coefficients aregiven by

poly(F)

6. Do some algebra

i) To introduce an algebraic variable, type

symss

ii) then try

G=s*eye(3)-F

to build a marix with polynomial entries.

iii) Then the inverse is

inv(G)

7. Complex numbers

i) Type

x=2+3*i

find the real and imaginary parts

real(x)
imag(x)

ii) Find the modulus and argument via

abs(x)
angle(x)

8. Sign off

Finished? Or something else to do? then sign off using

quit