dicom-microscopy-viewer-changed
Version:
Interactive web-based viewer for DICOM Microscopy Images
15 lines (14 loc) • 492 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.permutationsDocs = void 0;
var permutationsDocs = {
name: 'permutations',
category: 'Probability',
syntax: ['permutations(n)', 'permutations(n, k)'],
description: 'Compute the number of permutations of n items taken k at a time',
examples: ['permutations(5)', 'permutations(5, 3)'],
seealso: ['combinations', 'combinationsWithRep', 'factorial']
};
exports.permutationsDocs = permutationsDocs;