Power implementation. \param base value to exponentiate \param exp power to expontiate to \return function value stored in single-preicision
| 1476 | /// \param exp power to expontiate to |
| 1477 | /// \return function value stored in single-preicision |
| 1478 | static expr pow(float base, float exp) { return expr(std::pow(base, exp)); } |
| 1479 | |
| 1480 | /// Sine implementation. |
| 1481 | /// \param arg function argument |