Class MatriceCarre


  • public class MatriceCarre
    extends java.lang.Object
    Une classe définissant une matrice carrée
    • Constructor Summary

      Constructors 
      Constructor Description
      MatriceCarre​(int t)
      Constructeur créant une matrice vide
      MatriceCarre​(MatriceCarre a)
      Constructeur copiant une matrice donnée dans une nouvelle matrice
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean equals​(MatriceCarre a)  
      int getCoeff​(int i, int j)
      Méthode permettant de récuperer le coefficient d'une matrice
      void setCoeff​(int i, int j, int val)
      Méthode permettant de définir le coefficient d'une matrice
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • MatriceCarre

        public MatriceCarre​(int t)
        Constructeur créant une matrice vide
        Parameters:
        t - La taille de la matrice
      • MatriceCarre

        public MatriceCarre​(MatriceCarre a)
        Constructeur copiant une matrice donnée dans une nouvelle matrice
        Parameters:
        a - La matrice à copier
    • Method Detail

      • setCoeff

        public void setCoeff​(int i,
                             int j,
                             int val)
        Méthode permettant de définir le coefficient d'une matrice
        Parameters:
        i - Le coefficient de ligne
        j - Le coefficient de colonne
        val - La valeur du coefficient
      • getCoeff

        public int getCoeff​(int i,
                            int j)
        Méthode permettant de récuperer le coefficient d'une matrice
        Parameters:
        i - Le coefficient de ligne
        j - Le coefficient de colonne
        Returns:
        Le coefficient
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object