cdf.js (2477B)
1 /** 2 * @license Apache-2.0 3 * 4 * Copyright (c) 2018 The Stdlib Authors. 5 * 6 * Licensed under the Apache License, Version 2.0 (the "License"); 7 * you may not use this file except in compliance with the License. 8 * You may obtain a copy of the License at 9 * 10 * http://www.apache.org/licenses/LICENSE-2.0 11 * 12 * Unless required by applicable law or agreed to in writing, software 13 * distributed under the License is distributed on an "AS IS" BASIS, 14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 * See the License for the specific language governing permissions and 16 * limitations under the License. 17 */ 18 19 'use strict'; 20 21 /* 22 * When adding modules to the namespace, ensure that they are added in alphabetical order according to module name. 23 */ 24 25 // MAIN // 26 27 var CDF = {}; 28 29 CDF[ 'arcsine' ] = require( './../../base/dists/arcsine/cdf' ); 30 CDF[ 'beta' ] = require( './../../base/dists/beta/cdf' ); 31 CDF[ 'betaprime' ] = require( './../../base/dists/betaprime/cdf' ); 32 CDF[ 'cauchy' ] = require( './../../base/dists/cauchy/cdf' ); 33 CDF[ 'chi' ] = require( './../../base/dists/chi/cdf' ); 34 CDF[ 'chisquare' ] = require( './../../base/dists/chisquare/cdf' ); 35 CDF[ 'cosine' ] = require( './../../base/dists/cosine/cdf' ); 36 CDF[ 'erlang' ] = require( './../../base/dists/erlang/cdf' ); 37 CDF[ 'exponential' ] = require( './../../base/dists/exponential/cdf' ); 38 CDF[ 'f' ] = require( './../../base/dists/f/cdf' ); 39 CDF[ 'frechet' ] = require( './../../base/dists/frechet/cdf' ); 40 CDF[ 'gamma' ] = require( './../../base/dists/gamma/cdf' ); 41 CDF[ 'gumbel' ] = require( './../../base/dists/gumbel/cdf' ); 42 CDF[ 'invgamma' ] = require( './../../base/dists/invgamma/cdf' ); 43 CDF[ 'kumaraswamy' ] = require( './../../base/dists/kumaraswamy/cdf' ); 44 CDF[ 'laplace' ] = require( './../../base/dists/laplace/cdf' ); 45 CDF[ 'levy' ] = require( './../../base/dists/levy/cdf' ); 46 CDF[ 'logistic' ] = require( './../../base/dists/logistic/cdf' ); 47 CDF[ 'lognormal' ] = require( './../../base/dists/lognormal/cdf' ); 48 CDF[ 'normal' ] = require( './../../base/dists/normal/cdf' ); 49 CDF[ 'pareto-type1' ] = require( './../../base/dists/pareto-type1/cdf' ); 50 CDF[ 'rayleigh' ] = require( './../../base/dists/rayleigh/cdf' ); 51 CDF[ 't' ] = require( './../../base/dists/t/cdf' ); 52 CDF[ 'triangular' ] = require( './../../base/dists/triangular/cdf' ); 53 CDF[ 'uniform' ] = require( './../../base/dists/uniform/cdf' ); 54 CDF[ 'weibull' ] = require( './../../base/dists/weibull/cdf' ); 55 56 57 // EXPORTS // 58 59 module.exports = CDF;