25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

36 satır
836 B

  1. //
  2. // Lol Engine - Sample math program: Chebyshev polynomials
  3. //
  4. // Copyright: (c) 2005-2011 Sam Hocevar <sam@hocevar.net>
  5. // This program is free software; you can redistribute it and/or
  6. // modify it under the terms of the Do What The Fuck You Want To
  7. // Public License, Version 2, as published by Sam Hocevar. See
  8. // http://www.wtfpl.net/ for more details.
  9. //
  10. #if defined HAVE_CONFIG_H
  11. # include "config.h"
  12. #endif
  13. #include "core.h"
  14. #include "lol/math/real.h"
  15. #include "lol/math/remez.h"
  16. using lol::real;
  17. using lol::RemezSolver;
  18. /* See the tutorial at http://lol.zoy.org/wiki/doc/maths/remez */
  19. real f(real const &x) { return exp(x); }
  20. real g(real const &x) { return exp(x); }
  21. int main(int argc, char **argv)
  22. {
  23. UNUSED(argc, argv);
  24. RemezSolver<4, real> solver;
  25. solver.Run(-1, 1, f, g, 40);
  26. return 0;
  27. }