Data
SCPI Command :
CALCulate<n>:MASK:LOWer[:DATA]
- Commands in total: 1Subgroups: 0Direct child commands: 1
- class DataStruct[source]
Response structure. Fields:
1 Frequency: List[float]: Frequency of the data point Unit: Hz
2 Level: List[float]: Level of the data point Unit: DBM
- get(window=Window.Default) DataStruct[source]
# 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 methodRsFsw.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.- Parameters:
window – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Calculate’)
- Returns:
structure: for return value, see the help for DataStruct structure arguments.
- set(frequency: List[float], level: List[float], window=Window.Default) None[source]
# 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 methodRsFsw.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.- Parameters:
frequency – Frequency of the data point Unit: Hz
level – Level of the data point Unit: DBM
window – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Calculate’)