Hello,I have nowhere seen a proposal for Systems of Linear Ecuations solving.I know they can be solved with LU descomposition for quadratic systems.Eg:Ax = b;A = LU with LU transform;LUx = b; note Ux = y, thenLy = b => y = LTRIS(L, b), thenUx = y => x = UTRIS(U, y);Note: LTRIS and UTRIS are methods for solving triangular lower/upper systems of ecuations.LTRISx = b;for i = 1 : nfor j = 1 : i - 1x(i) = x(i) - L(i,j)x(j)endx(i) = x(i) / L(i,i);endUTRIS:x = b;for i = n : -1: 1for j = i + 1 : nx(i) = x(i) - U(i,j)x(j)endx(i) = x(i) / U(i,i);endCan this thing be proposed in Boost uBLAS?Thank you,Iulian Calciu
_______________________________________________
ublas mailing list
ublas@lists.boost.org
http://lists.boost.org/mailman/listinfo.cgi/ublas
Sent to: david.bellot@gmail.com