[docs]classDemodCls:"""Demod commands group definition. 34 total commands, 7 Subgroups, 0 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("demod",core,parent)@propertydefcestimation(self):"""cestimation commands group. 2 Sub-classes, 1 commands."""ifnothasattr(self,'_cestimation'):from.CestimationimportCestimationClsself._cestimation=CestimationCls(self._core,self._cmd_group)returnself._cestimation@propertydefdata(self):"""data commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_data'):from.DataimportDataClsself._data=DataCls(self._core,self._cmd_group)returnself._data@propertydeftxArea(self):"""txArea commands group. 0 Sub-classes, 1 commands."""ifnothasattr(self,'_txArea'):from.TxAreaimportTxAreaClsself._txArea=TxAreaCls(self._core,self._cmd_group)returnself._txArea@propertydeffft(self):"""fft commands group. 1 Sub-classes, 0 commands."""ifnothasattr(self,'_fft'):from.FftimportFftClsself._fft=FftCls(self._core,self._cmd_group)returnself._fft@propertydeffilterPy(self):"""filterPy commands group. 3 Sub-classes, 0 commands."""ifnothasattr(self,'_filterPy'):from.FilterPyimportFilterPyClsself._filterPy=FilterPyCls(self._core,self._cmd_group)returnself._filterPy@propertydefformatPy(self):"""formatPy commands group. 5 Sub-classes, 0 commands."""ifnothasattr(self,'_formatPy'):from.FormatPyimportFormatPyClsself._formatPy=FormatPyCls(self._core,self._cmd_group)returnself._formatPy@propertydefinterpolate(self):"""interpolate commands group. 1 Sub-classes, 1 commands."""ifnothasattr(self,'_interpolate'):from.InterpolateimportInterpolateClsself._interpolate=InterpolateCls(self._core,self._cmd_group)returnself._interpolatedefclone(self)->'DemodCls':"""Clones the group by creating new object from it and its whole existing subgroups Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group"""new_group=DemodCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group