X and Multiple Y Data Class
- Updated2022-07-11
- 1 minute(s) read
X and Multiple Y Data Class
XAndMultipleYData is a data class that contains X-axis data from one measurement channel and Y‑axis data from multiple channels.
xyydata = XAndMultipleYData(
name="Open-loop Gain/Phase",
x=x_data,
y_list=[y1_data, y2_data],
)
| Parameter | Required? | Data Type | Description |
|---|---|---|---|
| x | Yes | Custom | X-axis measurement data. (Channel) |
| y_list | Yes | Custom | 1-Dimension list of Y-axis measurement data. (List[Channel]) |
| name | Yes | String | Name of the TDMS group for the XY data. |