configure_math_channel
Set up mathematical operations between oscilloscope channels to perform addition, subtraction, or multiplication of signal data for enhanced waveform analysis.
Instructions
Configure a math channel (channel operations).
Args: operation: Mathematical operation to perform. channel_a: First channel. channel_b: Second channel.
Returns: Dictionary containing math channel configuration.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channel_a | No | A | |
channel_b | No | B | |
operation | No | add |
Input Schema (JSON Schema)
{
"properties": {
"channel_a": {
"default": "A",
"enum": [
"A",
"B",
"C",
"D"
],
"type": "string"
},
"channel_b": {
"default": "B",
"enum": [
"A",
"B",
"C",
"D"
],
"type": "string"
},
"operation": {
"default": "add",
"enum": [
"add",
"subtract",
"multiply"
],
"type": "string"
}
},
"type": "object"
}