Data

SCPI Command :

CALCulate<n>:MASK:LOWer[: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 data point Unit: Hz

  • Level: List[float]: Level of the data point Unit: DBM

get(window=Window.Default) DataStruct[source]
# SCPI: CALCulate<n>:MASK:LOWer[:DATA]
value: DataStruct = driver.calculate.mask.lower.data.get(window = repcap.Window.Default)

Defines the shape of the lower frequency mask. Before making any changes to a frequency mask, you have to select one by name with method RsFsw.Calculate.Mask.Name.set. The unit of the power levels depends on method RsFsw.Calculate.Mask.Mode. set. For R&S FSW-K70, this command is query only. [N] pairs of numerical values. [N] is the number of data points the mask consists of. Each data point is defined by the frequency and the level. All values are separated by commas. Note that the data points have to be inside the current span.

param window

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Calculate’)

return

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

set(frequency: List[float], level: List[float], window=Window.Default) None[source]
# SCPI: CALCulate<n>:MASK:LOWer[:DATA]
driver.calculate.mask.lower.data.set(frequency = [1.1, 2.2, 3.3], level = [1.1, 2.2, 3.3], window = repcap.Window.Default)

Defines the shape of the lower frequency mask. Before making any changes to a frequency mask, you have to select one by name with method RsFsw.Calculate.Mask.Name.set. The unit of the power levels depends on method RsFsw.Calculate.Mask.Mode. set. For R&S FSW-K70, this command is query only. [N] pairs of numerical values. [N] is the number of data points the mask consists of. Each data point is defined by the frequency and the level. All values are separated by commas. Note that the data points have to be inside the current span.

param frequency

Frequency of the data point Unit: Hz

param level

Level of the data point Unit: DBM

param window

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Calculate’)