mqscript_sqr
Calculate the square root of a number in MQScript mobile automation scripts for mathematical operations during device control tasks.
Instructions
Calculate square root of a number
Input Schema
Name | Required | Description | Default |
---|---|---|---|
number | Yes | Number to get square root of | |
resultVariable | No | Variable name to store result | result |
Input Schema (JSON Schema)
{
"properties": {
"number": {
"description": "Number to get square root of",
"type": "number"
},
"resultVariable": {
"default": "result",
"description": "Variable name to store result",
"type": "string"
}
},
"required": [
"number"
],
"type": "object"
}