1.4.1. Hints for Matrix Homework Assignment¶
Assign a variable name to each matrix and use the
*
operator in MATLAB to multiply. See Matrix Multiplication.See Determinant
See Invertible Test, either the determinant
det()
function or therank()
can find if a matrix is singular or full rank. Theinv()
function computes the inverse of a matrix.
See Systems of Linear Equations for an example to putting a system of equations into matrix form.
See the example in When Does a Solution Exist?.