1/4
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
|---|
No study sessions yet.
x= A \ B
Solves the system Ax = B using left division (the recommended method).
x = inv(A) * B
Solves the system Ax = B using the matrix inverse (slower and less stable).
Aug = [A B]
Creates an augmented matrix [A|B] for row reduction.
rref(M)
Computes the Reduced Row Echelon Form of matrix M.
[L, U, P] = lu(A)
Performs LU decomposition, returning Lower triangular (L), Upper triangular (U), and Permutation (P) matrices.