Data
SCPI Command :
[SENSe]:CORRection:LOSS:INPut: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 dB to 999.99 dB, Unit: HZ
2 Loss: List[float]: Loss of the measurement point. Range: -999.99 dB to 999.99 dB, Unit: DB
- get() DataStruct[source]
# [SENSe]:CORRection:LOSS:INPut:TABLe[:DATA] value: DataStruct = driver.applications.k30NoiseFigure.sense.correction.loss.inputPy.table.data.get()
Defines the contents of the currently selected input 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. The table should contain an input loss for all measurement points. If you create a new table with this command, it will overwrite 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:INPut:TABLe[:DATA] driver.applications.k30NoiseFigure.sense.correction.loss.inputPy.table.data.set(frequency = [1.1, 2.2, 3.3], loss = [1.1, 2.2, 3.3])
Defines the contents of the currently selected input 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. The table should contain an input loss for all measurement points. If you create a new table with this command, it will overwrite the current entries of the loss table.
- Parameters:
frequency – Frequency of the measurement point. Range: 0 dB to 999.99 dB, Unit: HZ
loss – Loss of the measurement point. Range: -999.99 dB to 999.99 dB, Unit: DB