[Documentation] [TitleIndex] [WordIndex

Compiling & Linking

Include the following at the top of any translation unit:

   1 #include <ecl/math.hpp>
   2 
   3 // constants
   4 using ecl::pi; // also pi_2, pi_4
   5 
   6 // simple functions
   7 using ecl::EuclideanNorm;
   8 using ecl::isApprox;
   9 using ecl::isApproxOrLessThan;
  10 using ecl::sign; // also psign
  11 using ecl::cube_root; // only for real numbers/solutions
  12 

Tutorial


2024-06-15 12:55