mad.js 520 B

123456789101112131415
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.madDocs = void 0;
  6. var madDocs = {
  7. name: 'mad',
  8. category: 'Statistics',
  9. syntax: ['mad(a, b, c, ...)', 'mad(A)'],
  10. description: 'Compute the median absolute deviation of a matrix or a list with values. The median absolute deviation is defined as the median of the absolute deviations from the median.',
  11. examples: ['mad(10, 20, 30)', 'mad([1, 2, 3])'],
  12. seealso: ['mean', 'median', 'std', 'abs']
  13. };
  14. exports.madDocs = madDocs;