Data
SCPI Command :
[SENSe]:CORRection:LOSS:CALibration:TABLe[:DATA]
- Commands in total: 1Subgroups: 0Direct child commands: 1
- class DataStruct[source]
Response structure. Fields:
1 Frequency: List[float]: Frequency of the measurement point. Range: 0 Hz to 999.99 GHz, Unit: HZ
2 Loss: List[float]: Loss of the measurement point. Range: -999.99 GHz to 999.99 GHz, Unit: DB
- get() DataStruct[source]
# [SENSe]:CORRection:LOSS:CALibration:TABLe[:DATA] value: DataStruct = driver.applications.k30NoiseFigure.sense.correction.loss.calibration.table.data.get()
Defines the contents of the currently selected calibration loss table. Each entry of the loss table consists of one measurement point and the corresponding loss. The table can contain up to 10001 entries. If you create a new table with this command, it overwrites the current entries of the loss table.
- Returns:
structure: for return value, see the help for DataStruct structure arguments.
- set(frequency: List[float], loss: List[float]) None[source]
# [SENSe]:CORRection:LOSS:CALibration:TABLe[:DATA] driver.applications.k30NoiseFigure.sense.correction.loss.calibration.table.data.set(frequency = [1.1, 2.2, 3.3], loss = [1.1, 2.2, 3.3])
Defines the contents of the currently selected calibration loss table. Each entry of the loss table consists of one measurement point and the corresponding loss. The table can contain up to 10001 entries. If you create a new table with this command, it overwrites the current entries of the loss table.
- Parameters:
frequency – Frequency of the measurement point. Range: 0 Hz to 999.99 GHz, Unit: HZ
loss – Loss of the measurement point. Range: -999.99 GHz to 999.99 GHz, Unit: DB