[docs]classMinimumCls:"""Minimum commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("minimum",core,parent)
[docs]defget(self)->float:"""SCPI: FETCh:EVM:ALL:MINimum \n Snippet: value: float = driver.applications.k9X11Ad.fetch.evm.all.minimum.get() \n Returns the average, maximum or minimum EVM for all symbols for the PPDU in dB. For details see 'EVM All [dB]'. \n :return: result: No help available"""response=self._core.io.query_str(f'FETCh:EVM:ALL:MINimum?')returnConversions.str_to_float(response)