mqscript_tan
Calculate tangent values for angles in radians within mobile automation scripts, enabling trigonometric calculations for device control operations.
Instructions
Calculate tangent of an angle (in radians)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
angle | Yes | Angle in radians | |
resultVariable | No | Variable name to store result | result |
Input Schema (JSON Schema)
{
"properties": {
"angle": {
"description": "Angle in radians",
"type": "number"
},
"resultVariable": {
"default": "result",
"description": "Variable name to store result",
"type": "string"
}
},
"required": [
"angle"
],
"type": "object"
}