Procedure Optimiser(NulAbsorbant) DecomposerVL(M : Nul Ou Matrice, V : Nul Ou Matrice=? Sortie, L : 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;
V : Nul Ou Matrice;
L : Nul Ou Matrice;
Debut
...
M=Matrice(Reel, 4, 4);
V=Matrice(Reel, 4, 4);
L=Matrice(Reel, 4, 4);
DecomposerVL(M, Q, R);
/* Decomposition de la matrice M. */
...
Fin Principal
- | - | - | - | - | - | - | - | - |