Previous Le fichier header |
Parent Racine carré classique |
Outline | Next Racine carré vectorisée |
Écrivons le fichier sqrt_base.cpp :
1 |
#include <cmath>
|
1 |
#include "sqrt_base.h"
|
1 2 3 4 5 6 7 8 9 10 11 |
///Do the Hadamard product /** @param[out] tabResult : table of results of tabX*tabY * @param tabX : input table * @param tabY : input table * @param nbElement : number of elements in the tables */ void sqrt_base(float* tabResult, const float* tabX, size_t nbElement){ for(size_t i(0lu); i < nbElement; ++i){ tabResult[i] = std::sqrt(tabX[i]); } } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
/*************************************** Auteur : Pierre Aubert Mail : aubertp7@gmail.com Licence : CeCILL-C ****************************************/ #include <cmath> #include "sqrt_base.h" ///Do the Hadamard product /** @param[out] tabResult : table of results of tabX*tabY * @param tabX : input table * @param tabY : input table * @param nbElement : number of elements in the tables */ void sqrt_base(float* tabResult, const float* tabX, size_t nbElement){ for(size_t i(0lu); i < nbElement; ++i){ tabResult[i] = std::sqrt(tabX[i]); } } |
Previous Le fichier header |
Parent Racine carré classique |
Outline | Next Racine carré vectorisée |