floor
Round down any number to its nearest integer using this mathematical function, designed for precise calculations.
Instructions
Rounds a number down to the nearest integer
Input Schema
Name | Required | Description | Default |
---|---|---|---|
number | Yes | The number to round down |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"number": {
"description": "The number to round down",
"type": "number"
}
},
"required": [
"number"
],
"type": "object"
}