evalmathnotation.php 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. require_once "../inc/global.inc.php";
  4. echo "<pre>".
  5. get_lang('SummationPlus')."\n".
  6. get_lang('SubstractionMinus')."\n".
  7. get_lang('MultiplicationStar')."\n".
  8. get_lang('DivisionSlash')."\n".
  9. get_lang('ExponentiationCircumflex')."\n".
  10. "\n".
  11. get_lang('SquareRootSqrt')."\n".
  12. get_lang('AbsoluteValueAbs')."\n".
  13. get_lang('NaturalLogarithmLn')."\n".
  14. get_lang('LogarithmLog')."\n".
  15. get_lang('ENumberE')."\n".
  16. get_lang('PiNumberPi')."\n".
  17. "\n".
  18. get_lang('SineSin')."\n".
  19. get_lang('HyperbolicSineSinh')."\n".
  20. get_lang('ArcsineArcsin')."\n".
  21. get_lang('HyperbolicArcsineArcsinh')."\n".
  22. "\n".
  23. get_lang('CosineCos')."\n".
  24. get_lang('HyperbolicCosineCosh')."\n".
  25. get_lang('ArccosineArccos')."\n".
  26. get_lang('HyperbolicArccosineArccosh')."\n".
  27. "\n".
  28. get_lang('TangentTan')."\n".
  29. get_lang('HyperbolicTangentTanh')."\n".
  30. get_lang('ArctangentArctan')."\n".
  31. get_lang('HyperbolicArctangentArctanh')."\n".
  32. "\n".
  33. get_lang('CotangentCot')."\n".
  34. get_lang('HyperbolicCotangentCoth')."\n".
  35. get_lang('ArccotangentArccot')."\n".
  36. get_lang('HyperbolicArccotangentArccoth')."\n".
  37. "\n".
  38. get_lang('SecantSec')."\n".
  39. get_lang('HyperbolicSecantSech')."\n".
  40. get_lang('ArcsecantArcsec')."\n".
  41. get_lang('HyperbolicArcsecantArcsech')."\n".
  42. "\n".
  43. get_lang('CosecantCsc')."\n".
  44. get_lang('HyperbolicCosecantCsch')."\n".
  45. get_lang('ArccosecantArccsc')."\n".
  46. get_lang('HyperbolicArccosecantArccsch')."\n".
  47. "\n".
  48. "</pre>";