Source code for RsCMPX_Gprf.Implementations.Gprf.Measurement.IqRecorder.SymbolRate

from .....Internal.Core import Core
from .....Internal.CommandsGroup import CommandsGroup
from .....Internal import Conversions


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class SymbolRateCls: """SymbolRate commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("symbolRate", core, parent)
[docs] def fetch(self) -> float: """SCPI: FETCh:GPRF:MEASurement<Instance>:IQRecorder:SRATe \n Snippet: value: float = driver.gprf.measurement.iqRecorder.symbolRate.fetch() \n Returns the sampling rate of the I/Q recorder, resulting from the filter settings and the configured sample ratio. \n :return: sample_rate: No help available""" response = self._core.io.query_str(f'FETCh:GPRF:MEASurement<Instance>:IQRecorder:SRATe?') return Conversions.str_to_float(response)