Procedure Optimiser(NulAbsorbant) DecomposerPLU(M : Nul Ou Matrice, P : Nul Ou Matrice=? Sortie, L : Nul Ou Matrice=? Sortie,
U : Nul Ou Matrice=? Sortie);
Si la matrice M n'est pas inversible, alors l'exception OperationMatriceImpossible est envoyée.
Si le paramètre M est Nul, alors le résultat est Nul.
Principal
/*******/
Variable
/******/
M : Nul Ou Matrice;
P : Nul Ou Matrice;
L : Nul Ou Matrice;
U : Nul Ou Matrice;
Debut
...
M=Matrice(Reel, 4, 4);
P=Matrice(Reel, 4, 4);
L=Matrice(Reel, 4, 4);
U=Matrice(Reel, 4, 4);
DecomposerPLU(M, P, L, U);
/* Decomposition de la matrice M. */
...
Fin Principal
- | - | - | - | - | - | - | - | - |