Frequency
SCPI Commands :
[SOURce<HW>]:LIST:FREQuency:POINts
[SOURce<HW>]:LIST:FREQuency
- Commands in total: 2Subgroups: 0Direct child commands: 2
- get_points() int[source]
# [SOURce<HW>]:LIST:FREQuency:POINts value: int = driver.source.listPy.frequency.get_points()
Queries the number (points) of frequency entries in the seleced list.
- Returns:
points: integer Range: 0 to INT_MAX
- get_value() List[float][source]
# [SOURce<HW>]:LIST:FREQuency value: List[float] = driver.source.listPy.frequency.get_value()
Enters the frequency values in the selected list.
- Returns:
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
RsSmw.formatPy.data(). Range: 300 kHz to RFmax (depends on options)
- set_value(frequency: List[float]) None[source]
# [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.
- Parameters:
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
RsSmw.formatPy.data(). Range: 300 kHz to RFmax (depends on options)