/************************************ "In Place" LU Decomposition --------------------------- Input: a - pointer to [n x n] matrix n - matrix dimenssions Output: is writen to a where l[i][i]=1 [i=0...n-1] Important note: This routine do not perform pivoting. The final result depend on the user's partial pivoting *************************************/ void ludecomp(float **a,int n) { int i,j,k; for( j=0 ; j