get_statistics
Analyze signal data from PicoScope oscilloscopes to calculate statistical metrics including minimum, maximum, mean, and standard deviation values for signal analysis.
Instructions
Get statistical analysis of signal.
Args: channel: Channel to analyze. num_samples: Number of samples to analyze.
Returns: Dictionary containing min, max, mean, std dev, etc.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channel | Yes | ||
num_samples | No |
Input Schema (JSON Schema)
{
"properties": {
"channel": {
"enum": [
"A",
"B",
"C",
"D"
],
"type": "string"
},
"num_samples": {
"default": 1000,
"type": "integer"
}
},
"required": [
"channel"
],
"type": "object"
}