<<PackageHeader(ecl_math)>>
<<TOC(4)>>

== Compiling & Linking ==

Include the following at the top of any translation unit:

{{{
#!cplusplus
#include <ecl/math.hpp>

// constants
using ecl::pi; // also pi_2, pi_4

// simple functions
using ecl::EuclideanNorm;
using ecl::isApprox;
using ecl::isApproxOrLessThan;
using ecl::sign; // also psign
using ecl::cube_root; // only for real numbers/solutions
}}}

== Tutorial ==

 * [[ecl_math/Tutorials/Simple Math|Simple Math]] - simple math constants and functions.

## AUTOGENERATED DON'T DELETE
## CategoryPackage