Previous Produit de Hadamard classique |
Parent Produit de Hadamard classique |
Outline | Next Le fichier source |
Écrivons le fichier hadamard_product_base.h :
1 2 |
#ifndef __HADAMARD_PRODUCT_BASE_H__ #define __HADAMARD_PRODUCT_BASE_H__ |
1 |
#include <iostream>
|
1 |
void hadamard_product_base(float* tabResult, const float* tabX, const float* tabY, size_t nbElement); |
1 |
#endif
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
/*************************************** Auteur : Pierre Aubert Mail : aubertp7@gmail.com Licence : CeCILL-C ****************************************/ #ifndef __HADAMARD_PRODUCT_BASE_H__ #define __HADAMARD_PRODUCT_BASE_H__ #include <iostream> void hadamard_product_base(float* tabResult, const float* tabX, const float* tabY, size_t nbElement); #endif |
Previous Produit de Hadamard classique |
Parent Produit de Hadamard classique |
Outline | Next Le fichier source |