public class sysLinM extends sysLin{
private matrice B;	

//constructeurs
sysLinM(double[][] AA,double[][] BB)
{
super(AA,null);
B=new matrice(BB); 

}




public matrice resoutLUM()
{
 int p=B.nbColonnes();
 int n=A.nbColonnes();
 matrice lA=new matrice(n,p);
 vecteur x=new vecteur(n);
 sysLin S= new sysLin(A,b);
for (int j=0;j<p;j++)
{S.affectVec(B.vecColonne(j));
	x=S.resoutLU();
lA.toVecColonne(j,x);
}
return lA;
}
}
