Data
SCPI Command :
[SENSe]:CORRection:LOSS:CALibration:TABLe[:DATA]
- class DataCls[source]
Data commands group definition. 1 total commands, 0 Subgroups, 1 group commands
- class DataStruct[source]
Response structure. Fields:
Frequency: List[float]: Frequency of the measurement point. Range: 0 Hz to 999.99 GHz, Unit: HZ
Loss: List[float]: Loss of the measurement point. Range: -999.99 GHz to 999.99 GHz, Unit: DB
- get() DataStruct [source]
# SCPI: [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.
- return
structure: for return value, see the help for DataStruct structure arguments.
- set(frequency: List[float], loss: List[float]) None [source]
# SCPI: [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.
- param frequency
Frequency of the measurement point. Range: 0 Hz to 999.99 GHz, Unit: HZ
- param loss
Loss of the measurement point. Range: -999.99 GHz to 999.99 GHz, Unit: DB