Data

SCPI Command :

[SENSe]:CORRection:LOSS:OUTPut: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 dB to 999.99 dB, Unit: HZ

  • Loss: List[float]: Loss of the measurement point. Range: -999.99 dB to 999.99 dB, Unit: DB

get() DataStruct[source]
# SCPI: [SENSe]:CORRection:LOSS:OUTPut:TABLe[:DATA]
value: DataStruct = driver.applications.k30NoiseFigure.sense.correction.loss.output.table.data.get()

Defines the contents of the currently selected output loss table. The table should contain an output loss for all measurement points. 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 will overwrite the current entries of the frequency list.

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:OUTPut:TABLe[:DATA]
driver.applications.k30NoiseFigure.sense.correction.loss.output.table.data.set(frequency = [1.1, 2.2, 3.3], loss = [1.1, 2.2, 3.3])

Defines the contents of the currently selected output loss table. The table should contain an output loss for all measurement points. 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 will overwrite the current entries of the frequency list.

param frequency

Frequency of the measurement point. Range: 0 dB to 999.99 dB, Unit: HZ

param loss

Loss of the measurement point. Range: -999.99 dB to 999.99 dB, Unit: DB