generate_random_float
Generate cryptographically secure random floating-point numbers within a specified range, count, and precision for reliable data simulations or applications.
Instructions
Generate cryptographically secure random floating-point numbers
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | Number of random floats to generate | |
max | No | Maximum value (exclusive) | |
min | No | Minimum value (inclusive) | |
precision | No | Number of decimal places to round to |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"default": 1,
"description": "Number of random floats to generate",
"maximum": 1000,
"minimum": 1,
"type": "integer"
},
"max": {
"default": 1,
"description": "Maximum value (exclusive)",
"type": "number"
},
"min": {
"default": 0,
"description": "Minimum value (inclusive)",
"type": "number"
},
"precision": {
"default": 6,
"description": "Number of decimal places to round to",
"maximum": 15,
"minimum": 1,
"type": "integer"
}
},
"required": [],
"type": "object"
}