Data

SCPI Command :

[SENSe]:CORRection:ENR[:MEASurement]:TABLe[:DATA]
class DataCls[source]

Data commands group definition. 1 total commands, 0 Subgroups, 1 group commands

class DataStruct[source]

Response structure. Fields:

  • Frequency_Enr: List[float]: Frequency of the measurement point. Range: 0 Hz to 999.99 GHz, Unit: HZ

  • Enr: List[float]: Unit: DB

get() DataStruct[source]
# SCPI: [SENSe]:CORRection:ENR[:MEASurement]:TABLe[:DATA]
value: DataStruct = driver.applications.k30NoiseFigure.sense.correction.enr.measurement.table.data.get()

Defines the contents of the currently selected ENR table. Define an ENR for all measurement points. Each entry of the ENR table consists of one measurement point and the corresponding ENR. The individual values are separated by commas or spaces. The table can contain up to 10001 entries. If you create a new table with this command, it overwrites the current entries of the frequency list. To select the ENR table to edit, use [SENSe:]CORRection:ENR[:MEASurement]:TABLe[:DATA].

return

structure: for return value, see the help for DataStruct structure arguments.

set(frequency_enr: List[float], enr: List[float]) None[source]
# SCPI: [SENSe]:CORRection:ENR[:MEASurement]:TABLe[:DATA]
driver.applications.k30NoiseFigure.sense.correction.enr.measurement.table.data.set(frequency_enr = [1.1, 2.2, 3.3], enr = [1.1, 2.2, 3.3])

Defines the contents of the currently selected ENR table. Define an ENR for all measurement points. Each entry of the ENR table consists of one measurement point and the corresponding ENR. The individual values are separated by commas or spaces. The table can contain up to 10001 entries. If you create a new table with this command, it overwrites the current entries of the frequency list. To select the ENR table to edit, use [SENSe:]CORRection:ENR[:MEASurement]:TABLe[:DATA].

param frequency_enr

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

param enr

Unit: DB