Gistlib Logo

gistlib

find the row echelon form of 0 1 3 1 1 0 1 1 3 1 0 2 1 1 2 0 a − −       =    in matlab

main.m
A = [0, 1, 3, 1; 1, 0, 1, 1; 3, 1, 0, 2; 1, 1, 2, 0];
rref(A)
62 chars
3 lines

similar matlab code snippets

find rref for matrix a = [1 2 3 4 ; 2 3 4 5 ; 3 4 5 6; 1 2 0 1]; b = [0 0 0 0]'; in matlab
pseudoinverse method to solve overdetermined system of equations in matlab
boost matrix in matlab
given three equations and four variables, solve the system in ax = b form in matlab
rref of an augmented matrix in matlab
compute the rank of a matrix in matlab
calculate hessian normal form in matlab
hesse normal form in matlab
gaussian elimination in matlab
how to calculate the svd decomposition of a matrix in matlab

related categories

linear-algebra
matlab

gistlibby LogSnag