Ta manière d'expliquer les cours est juste magnifique et merci pour le temps que tu consacres à ton projet
@AlamBarmaja4 жыл бұрын
Merci Hanane
@TheTheZiani4 жыл бұрын
Tbarkelah 3lik khouya Faouzi allah yj3elha sada9a jariya f mizan hassanatek
@sabahks40103 жыл бұрын
Avec cette chaine on est vraiment à l'aise.des cours interssants bien expliques. Z .m
@sabahks40103 жыл бұрын
ان صاحب هذه القناة التعليمية يبذل مجهودات مشكورة من اجل متابعيه وهذا يستوجب رد المعروف بالبارطاج على نطاق واسع وباللايكات وايضا الانخراط في القناة. ز.م
@elwan731810 ай бұрын
بارك الله فيك أيها العربي الصغير
@khalidlahjouji4 жыл бұрын
Merci La méthode transposée avec une petite différence ici tr.matrice[j][i]): public Matrice transposer() { Matrice tr = new Matrice(col, row, ale); for (int i = 0; i < row; i++) { for (int j = 0; j < col; j++) { tr.matrice[j][i] = matrice[i][j]; } } return tr; }
@boulaabimeher58912 жыл бұрын
Video dial produit de deux matrice, win mawjoud et merci
سلام معليش تعطيني طريقة كتابة بروقرام لفتح مصفوفة بغوص
@khalidlahjouji4 жыл бұрын
Merci pour la vidéo voila ma version pour la multiplication de deux matrices testé sur calculis.net/produit-matrices: public Matrice multiplication(Matrice m) { Matrice mlt = new Matrice(row, m.col, ale); if(col == m.row) { for (int i = 0; i < row; i++) { for (int j = 0; j < row; j++) { mlt.matrice[i][j] = 0; for (int k = 0; k < col; k++) { mlt.matrice[i][j] += matrice[i][k] * m.matrice[k][j]; } } } }else { System.err.println("Impossible de faire la multiplication !!"); System.exit(1); } return mlt; }