mirror of
https://github.com/wassname/random.js.git
synced 2026-09-08 17:10:13 +08:00
readme
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
Random number generator of statistical distributions.
|
||||
|
||||
# How to Use
|
||||
## Browsers
|
||||
|
||||
<script type="text/javascript" src="/path/to/random.js"></script>
|
||||
|
||||
<!-- html -->
|
||||
|
||||
<script type="text/javascript">
|
||||
var newPoint = random.normal(0, 1);
|
||||
</script>
|
||||
|
||||
## Node
|
||||
|
||||
var random = require('/path/to/random');
|
||||
var newPoint = random.normal(0, 1);
|
||||
|
||||
# Probability Distribution Functions
|
||||
## Continuous Distributions
|
||||
|
||||
Reference in New Issue
Block a user