[docs]classNstateCls:"""Nstate commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("nstate",core,parent)
[docs]defset(self,qamn_state:float)->None:"""SCPI: [SENSe]:DDEMod:PATTern:QAM:NSTate \n Snippet: driver.applications.k70Vsa.sense.ddemod.pattern.qam.nstate.set(qamn_state = 1.0) \n Defines the demodulation order for QAM for the pattern. Table Header: <QAMNSTate> / Order \n - 16 / 16QAM - 16 / Pi/4-16QAM - 32 / 32QAM - 32 / Pi/4-32QAM - 64 / 64QAM - 128 / 128QAM - 256 / 256QAM - 512 / 512QAM - 1024 / 1024QAM Is only available if the additional Multi-Modulation Analysis option (FSW-K70M) is installed. \n :param qamn_state: No help available """param=Conversions.decimal_value_to_str(qamn_state)self._core.io.write(f'SENSe:DDEMod:PATTern:QAM:NSTate {param}')
[docs]defget(self)->float:"""SCPI: [SENSe]:DDEMod:PATTern:QAM:NSTate \n Snippet: value: float = driver.applications.k70Vsa.sense.ddemod.pattern.qam.nstate.get() \n Defines the demodulation order for QAM for the pattern. Table Header: <QAMNSTate> / Order \n - 16 / 16QAM - 16 / Pi/4-16QAM - 32 / 32QAM - 32 / Pi/4-32QAM - 64 / 64QAM - 128 / 128QAM - 256 / 256QAM - 512 / 512QAM - 1024 / 1024QAM Is only available if the additional Multi-Modulation Analysis option (FSW-K70M) is installed. \n :return: qamn_state: No help available"""response=self._core.io.query_str(f'SENSe:DDEMod:PATTern:QAM:NSTate?')returnConversions.str_to_float(response)