Fonction Optimiser(Invariant, NulAbsorbant) Copier(L : Nul Ou Entier, C : Nul Ou Entier, L2 : Nul Ou Entier, H : Nul Ou Entier) Retourner Nul Ou Matrice(Nul Ou TypeElement);
Si la zone n'est pas inscrite dans la matrice ou est invalide, alors l'exception OperationMatriceImpossible est envoyée.
Principal
/*******/
Variable
/******/
M : Nul Ou Matrice;
M2 : Nul Ou Matrice;
Debut
...
M=Matrice(Reel, 4, 4);
M2=Matrice(Reel, 2, 2);
...
M2=M.Copier(1, 1, 2, 2);
/* Copie le centre de la matrice. */
...
Fin Principal
- | - | - | - | - | - | - | - | - |