[docs]classStateCls:"""State commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("state",core,parent)
[docs]defset(self,file:List[int])->None:"""SCPI: MMEMory:LOAD:IQ:STATe \n Snippet: driver.applications.k10Xlte.massMemory.load.iq.state.set(file = [1, 2, 3]) \n Restores I/Q data from a file. \n :param file: string String containing the path and name of the source file. The file type is determined by the file extension. If no file extension is provided, the file type is assumed to be .iq.tar. For .mat files, Matlab(R) v4 is assumed. """param=Conversions.list_to_csv_str(file)self._core.io.write(f'MMEMory:LOAD:IQ:STATe {param}')