Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.
I guess you are looking for the nontrivial solution. I think you should solve it So, I am sure that Matlab has a function to put a matrix in row reduced echelon form. Create a matrix with A columns and the last column being all zeros. I know this is of limited help, but your question seems vague.
So you need to make a matrix. Say it is four by four. Then here is the code:
each semicolon separates a column of the matrix.
A = [1 2 3 4; 1 2 3 4; 1 2 3 4; 0 0 0 0];
rref(A);
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.