Data

SCPI Commands

CALCulate<Window>:LIMit<LimitIx>:CONTrol:DATA
class DataCls[source]

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

get(window=Window.Default, limitIx=LimitIx.Default) List[float][source]
# SCPI: CALCulate<n>:LIMit<li>:CONTrol[:DATA]
value: List[float] = driver.calculate.limit.control.data.get(window = repcap.Window.Default, limitIx = repcap.LimitIx.Default)

This command defines the horizontal definition points of a limit line.

param window

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

param limitIx

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

return

limit_line_points: Variable number of x-axis values. Note that the number of horizontal values has to be the same as the number of vertical values set with method RsFswp.Calculate.Limit.Lower.Data.set or method RsFswp.Calculate.Limit.Upper.Data.set. If not, the R&S FSWP either adds missing values or ignores surplus values. Unit: HZ

set(limit_line_points: List[float], window=Window.Default, limitIx=LimitIx.Default) None[source]
# SCPI: CALCulate<n>:LIMit<li>:CONTrol[:DATA]
driver.calculate.limit.control.data.set(limit_line_points = [1.1, 2.2, 3.3], window = repcap.Window.Default, limitIx = repcap.LimitIx.Default)

This command defines the horizontal definition points of a limit line.

param limit_line_points

Variable number of x-axis values. Note that the number of horizontal values has to be the same as the number of vertical values set with method RsFswp.Calculate.Limit.Lower.Data.set or method RsFswp.Calculate.Limit.Upper.Data.set. If not, the R&S FSWP either adds missing values or ignores surplus values. Unit: HZ

param window

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

param limitIx

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