StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
646 B
24 lines
646 B
/**
|
|
* Composed set of all math utils, wrapped
|
|
*
|
|
* @module mumath
|
|
*/
|
|
'use strict';
|
|
const wrap = require('./wrap');
|
|
|
|
module.exports = {
|
|
clamp: wrap(require('./clamp')),
|
|
within: wrap(require('./within')),
|
|
round: wrap(require('./round')),
|
|
precision: wrap(require('./precision')),
|
|
mod: wrap(require('./mod')),
|
|
log10: wrap(require('./log10')),
|
|
len: wrap(require('./len')),
|
|
closest: wrap(require('./closest')),
|
|
order: wrap(require('./order')),
|
|
lerp: wrap(require('./lerp')),
|
|
isMultiple: wrap(require('./is-multiple')),
|
|
normalize: wrap(require('./normalize')),
|
|
scale: wrap(require('./scale')),
|
|
// pretty: wrap(require('./pretty')),
|
|
};
|
|
|