Previous Performances avec un produit de hadamard |
Parent Performances avec un produit de hadamard |
Outline | Next Évaluation du nombre de tests à développer |
Un produit de hadamard est un produit de deux vecteurs de taille $N$, élément par élément :
Une implémentation C++ donne typiquement :
1 2 3 4 5 |
void hadamard_product(float* tabResult, const float * tabX, const float* tabY, long unsigned int nbElement){ for(long unsigned int i(0lu); i < nbElement; ++i){ tabResult[i] = tabX[i]*tabY[i]; } } |
Previous Performances avec un produit de hadamard |
Parent Performances avec un produit de hadamard |
Outline | Next Évaluation du nombre de tests à développer |