-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathdist.lua
More file actions
17 lines (15 loc) · 712 Bytes
/
dist.lua
File metadata and controls
17 lines (15 loc) · 712 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--------------------------------------------------------------------------------
-- Statistical distributions module.
--
-- Copyright (C) 2011-2016 Stefano Peluchetti. All rights reserved.
--------------------------------------------------------------------------------
return {
exponential = require("sci.dist._exponential").dist,
normal = require("sci.dist._normal").dist,
lognormal = require("sci.dist._lognormal").dist,
gamma = require("sci.dist._gamma").dist,
beta = require("sci.dist._beta").dist,
student = require("sci.dist._student").dist,
uniform = require("sci.dist._uniform").dist,
mvuniform = require("sci.dist._uniform").mvdist,
}