main.cpp 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #include "modules/OrthPol.h"
  2. #include <iomanip>
  3. #include <string>
  4. int main()
  5. {
  6. // std::cout << std::setw(2) << "n ";
  7. // for (int j=1; j <=5; j++)
  8. // {
  9. // if (j == 5)
  10. // {
  11. // std::cout << std::setw(3) << std::right << std::setprecision(8) << j * 0.2 << std::endl;
  12. // }
  13. // else
  14. // {
  15. // std::cout << std::setw(3) << std::right << std::setprecision(8) << j * 0.2 << " ";
  16. // }
  17. // }
  18. // std::cout << "------------------------------------------------------------------------" << std::endl;
  19. // for (int i=0; i<=20; ++i)
  20. // {
  21. // std::cout << std::setw(2) << i << " ";
  22. // for (int j=1; j <=5; ++j)
  23. // {
  24. // std::vector<double> res = OrthPol(1, i, j*0.2);
  25. // if (j == 5)
  26. // {
  27. // std::cout << std::to_string(res[0]).substr(0,8) << std::endl;
  28. // //std::cout << std::setw(10) << std::right << std::setprecision(8) << res[0] << std::endl;
  29. // }
  30. // else
  31. // {
  32. // std::cout << std::to_string(res[0]).substr(0,8) << " ";
  33. // //std::cout << std::setw(10) << std::right << std::setprecision(8) << res[0] << " " ;
  34. // }
  35. // }
  36. // }
  37. for (int i = 0; i < 51; ++i) {
  38. OrthPol(1, i, 0);
  39. }
  40. }