-
Notifications
You must be signed in to change notification settings - Fork 2
RandUniform
Andika Wasisto edited this page May 1, 2021
·
2 revisions
GET /api/randuniform
Name | Type | Description |
---|---|---|
length |
integer | The number of random numbers to generate. Default: 1 |
min |
number | The minimum random number. Default: 0.0 |
max |
number | The maximum random number. Default: 1.0 |
curl 'http://192.168.1.100:8080/api/randuniform?length=10'
Status: 200 OK
{
"action": "randuniform",
"min": 0.0,
"max": 1.0,
"length": 10,
"data":[
0.48649744599556455,
0.17020683866585684,
0.0061428866738929555,
0.11103842486279847,
0.8602822740513301,
0.6109733526449501,
0.8683117497467471,
0.47723468962358073,
0.5475785620904178,
0.1891698106765134
]
}