subtract
Perform floating-point subtraction by inputting two numbers to calculate the difference. Ideal for precise numerical calculations in mathematical operations.
Instructions
执行浮点数减法运算
Input Schema
Name | Required | Description | Default |
---|---|---|---|
a | Yes | ||
b | Yes |
Input Schema (JSON Schema)
{
"properties": {
"a": {
"title": "A",
"type": "number"
},
"b": {
"title": "B",
"type": "number"
}
},
"required": [
"a",
"b"
],
"title": "subtractArguments",
"type": "object"
}