ExplicitExpressions.h 347 B

1234567891011
  1. #pragma once
  2. #include <iostream>
  3. #include <cmath>
  4. #define EPS_CHEB pow(10, -7)
  5. #define EPS_LAG pow(10, -7)
  6. #define EPS_HERM pow(10, -7)
  7. double ExplicitExpressionCheb(const int& type, const int& n, const double& x);
  8. double ExplicitExpressionLaguerre(const int& n, const double& x);
  9. double ExplicitExpressionHermite(const int& n, const double& x);