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