Frequency

SCPI Commands :

[SOURce<HW>]:LIST:FREQuency:POINts
[SOURce<HW>]:LIST:FREQuency
class FrequencyCls[source]

Frequency commands group definition. 2 total commands, 0 Subgroups, 2 group commands

get_points() int[source]
# SCPI: [SOURce<HW>]:LIST:FREQuency:POINts
value: int = driver.source.listPy.frequency.get_points()

Queries the number (points) of frequency entries in the seleced list.

return

points: integer Range: 0 to INT_MAX

get_value() List[float][source]
# SCPI: [SOURce<HW>]:LIST:FREQuency
value: List[float] = driver.source.listPy.frequency.get_value()

Enters the frequency values in the selected list.

return

frequency: Frequency#1{, Frequency#2, …} | block data You can either enter the data as a list of numbers, or as binary block data. The list of numbers can be of any length, with the list entries separated by commas. In binary block format, 8 (4) bytes are always interpreted as a floating-point number with double accuracy. See also method RsSmbv.FormatPy.data. Range: 300 kHz to RFmax (depends on the installed options)

set_value(frequency: List[float]) None[source]
# SCPI: [SOURce<HW>]:LIST:FREQuency
driver.source.listPy.frequency.set_value(frequency = [1.1, 2.2, 3.3])

Enters the frequency values in the selected list.

param frequency

Frequency#1{, Frequency#2, …} | block data You can either enter the data as a list of numbers, or as binary block data. The list of numbers can be of any length, with the list entries separated by commas. In binary block format, 8 (4) bytes are always interpreted as a floating-point number with double accuracy. See also method RsSmbv.FormatPy.data. Range: 300 kHz to RFmax (depends on the installed options)