extra-documentation.js 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. // Unfortunetly the documentation is incomplete
  2. module.exports = new Map([
  3. [
  4. 'Gamma',
  5. [{
  6. category: 'Gamma',
  7. functionName: 'lbeta',
  8. description: 'Natural log of |beta|.'
  9. }]
  10. ],
  11. [
  12. 'Probability',
  13. [{
  14. category: 'Probability',
  15. functionName: 'btdtr',
  16. description: 'Beta distribution'
  17. }, {
  18. category: 'Probability',
  19. functionName: 'smirnov',
  20. description: 'Exact Smirnov statistic, for one-sided test.'
  21. }, {
  22. category: 'Probability',
  23. functionName: 'kolmogorov',
  24. description: 'Kolmogorov\'s limiting distribution of two-sided test.'
  25. }, {
  26. category: 'Probability',
  27. functionName: 'smirnovi',
  28. description: 'Functional inverse of Smirnov distribution.'
  29. }, {
  30. category: 'Probability',
  31. functionName: 'kolmogi',
  32. description: 'Functional inverse of Kolmogorov statistic for two-sided test.'
  33. }, {
  34. category: 'Probability',
  35. functionName: 'nbdtri',
  36. description: 'Inverse Negative binomial distribution'
  37. }, {
  38. category: 'Probability',
  39. functionName: 'stdtri',
  40. description: 'Functional inverse of Student\'s t distribution'
  41. }]
  42. ],
  43. [
  44. 'Exponential integral',
  45. [{
  46. category: 'Exponential integral',
  47. functionName: 'ei',
  48. description: 'Exponential integral'
  49. }]
  50. ],
  51. [
  52. 'Exponential and Trigonometric',
  53. [{
  54. category: 'Exponential and Trigonometric',
  55. functionName: 'expx2',
  56. description: 'Exponential of squared argument'
  57. }, {
  58. category: 'Exponential and Trigonometric',
  59. functionName: 'radian',
  60. description: 'Degrees, minutes, seconds to radians'
  61. }, {
  62. category: 'Exponential and Trigonometric',
  63. functionName: 'sincos',
  64. description: 'Circular sine and cosine of argument in degrees'
  65. }, {
  66. category: 'Exponential and Trigonometric',
  67. functionName: 'cot',
  68. description: 'Circular cotangent'
  69. }, {
  70. category: 'Exponential and Trigonometric',
  71. functionName: 'cotdg',
  72. description: 'Circular cotangent of argument in degrees'
  73. }, {
  74. category: 'Exponential and Trigonometric',
  75. functionName: 'log1p',
  76. description: 'Relative error approximations for log(1 + x)'
  77. }, {
  78. category: 'Exponential and Trigonometric',
  79. functionName: 'expm1',
  80. description: 'Relative error approximations for exp(x) - 1'
  81. }, {
  82. category: 'Exponential and Trigonometric',
  83. functionName: 'cosm1',
  84. description: 'Relative error approximations for cos(x) - 1'
  85. }]
  86. ],
  87. [
  88. 'Arithmetic and Algebraic',
  89. [{
  90. category: 'Arithmetic and Algebraic',
  91. functionName: 'signbit',
  92. description: 'Returns the sign bit'
  93. }, {
  94. category: 'Arithmetic and Algebraic',
  95. functionName: 'isnan',
  96. description: 'Check if Not-A-Number'
  97. }, {
  98. category: 'Arithmetic and Algebraic',
  99. functionName: 'isfinite',
  100. description: 'Check if finite'
  101. }]
  102. ],
  103. [
  104. 'Miscellaneous',
  105. [{
  106. category: 'Miscellaneous',
  107. functionName: 'plancki',
  108. description: 'Integral of Planck\'s black body radiation formula'
  109. }, {
  110. category: 'Miscellaneous',
  111. functionName: 'planckc',
  112. description: 'Complemented Planck radiation integral'
  113. }, {
  114. category: 'Miscellaneous',
  115. functionName: 'planckd',
  116. description: 'Planck\'s black body radiation formula'
  117. }, {
  118. category: 'Miscellaneous',
  119. functionName: 'planckw',
  120. description: 'Wavelength, w, of maximum radiation at given temperature T.'
  121. }]
  122. ],
  123. [
  124. 'Polynomials and Power Series',
  125. [{
  126. category: 'Polynomials and Power Series',
  127. functionName: 'p1evl',
  128. description: 'Evaluate polynomial when coefficient of x is 1.0.'
  129. }, {
  130. category: 'Polynomials and Power Series',
  131. functionName: 'polylog',
  132. description: 'The polylogarithm of order n'
  133. }]
  134. ]
  135. ]);