diff --git a/math.h b/math.h new file mode 100644 index 00000000..2ade416f --- /dev/null +++ b/math.h @@ -0,0 +1,102 @@ +///\file + +/****************************************************************************** +The MIT License(MIT) + +Embedded Template Library. + +Copyright(c) 2014 jwellbelove + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files(the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and / or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions : + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +******************************************************************************/ + +#ifndef __etl_math__ +#define __etl_math__ + +#include + +namespace etl +{ + //*************************************************************************** + /// The base generic Log template. + /// Defines 'value' as the log of the number at the specified base. + /// The result is rounded down to the next integer. + ///\tparam N The number to find the log of. + ///\tparam BASE The base of the log. + //*************************************************************************** + template + struct Log + { + enum Value + { + // Recursive definition. + value = (N >= BASE) ? 1 + Log::value : 0 + }; + }; + + //*************************************************************************** + /// Specialisation for N = 1 + //*************************************************************************** + template + struct Log<1, BASE> + { + enum Value + { + value = 0 + }; + }; + + //*************************************************************************** + /// Specialisation for N = 0 + //*************************************************************************** + template + struct Log<0, BASE> + { + enum Value + { + value = 0 + }; + }; + + //*************************************************************************** + /// The specialisation for base 2 logs. + //*************************************************************************** + template + struct Log2 + { + enum Value + { + value = Log::value + }; + }; + + //*************************************************************************** + /// The specialisation for base 10 logs. + //*************************************************************************** + template + struct Log10 + { + enum Value + { + value = Log::value + }; + }; +} + +#endif