Fix.hh
598 Bytes
/**
* Fix.hh
*
* Created on: 23 jun. 2018
* Author: AKKA IS
*/
#ifndef FIX_HH_
#define FIX_HH_
#include <vector>
/**
* @bried Compute the fix of el
*/
int Fix(const float& el);
int Fix(const double& el);
int Fix(const long double& el);
int Fix(const int& el);
int Fix(const short& el);
std::vector<int> Fix(const std::vector<float>& el);
std::vector<int> Fix(const std::vector<double>& el);
std::vector<int> Fix(const std::vector<long double>& el);
std::vector<int> Fix(const std::vector<int>& el);
std::vector<int> Fix(const std::vector<short>& el);
#endif /* FIX_HH_ */