Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TugboatEng on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. hijohn2

    Upper triangularization method using matlab

    Function X = uptrbk(A,B) %Input – A is an N x N nonsingular matrix % B is an N x 1 matrix % Output – X is an N x 1 matrix containing the solution to AX=B % Initialize X and the temporary storage matrix C [N N] = size(A); X=zeros(N,1); C=zeros(1,N+1); %Form the augmented matrix: Aug=[A|B]...

Part and Inventory Search

Back
Top