def multiplication_diagonale(A,B): #multiplie des matrices entrees sous forme compactes
Produit=[]
for j in range(len(A)): #A et B ont meme dimension
Produit.append(A[j]*B[j])
return Produit
Produit=[]
for j in range(len(A)): #A et B ont meme dimension
Produit.append(A[j]*B[j])
return Produit
Aucun commentaire:
Enregistrer un commentaire