Mathworks++
A C++ port of Python Mathworks
 All Classes Namespaces Files Functions Pages
exponent.hpp
Go to the documentation of this file.
1 #ifndef EXPONENT_HPP_INCLUDED
2 #define EXPONENT_HPP_INCLUDED
3 
4 namespace mathworks
5 {
6 namespace exponent
7 {
9 
12 int square(int base);
14 
17 double square(double base);
19 
22 int cube(int base);
24 
27 double cube(double base);
29 
33 int calc(int base, int power);
35 
39 double calc(double base, int power);
40 }
41 }
42 
43 #endif // EXPONENT_HPP_INCLUDED