[docs]classFparametersCls:"""Fparameters commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("fparameters",core,parent)
[docs]defset(self,coefficient:List[float])->None:"""SCPI: CONFigure:EQUalizer:FPARameters \n Snippet: driver.applications.k18AmplifierEt.configure.equalizer.fparameters.set(coefficient = [1.1, 2.2, 3.3]) \n This command defines the filter coefficients. You can use this command to define the filter coefficients manually instead of training a filter. \n :param coefficient: numeric value (integer only) List of comma separated values. Each coefficient consists of a real and an imaginary value. Coefficient_1_I,Coefficient_2_Q,Coefficient_2_I,Coefficient_2_Q,...,Coefficient_n_I,Coefficient_n_Q """param=Conversions.list_to_csv_str(coefficient)self._core.io.write(f'CONFigure:EQUalizer:FPARameters {param}')
[docs]defget(self)->List[float]:"""SCPI: CONFigure:EQUalizer:FPARameters \n Snippet: value: List[float] = driver.applications.k18AmplifierEt.configure.equalizer.fparameters.get() \n This command defines the filter coefficients. You can use this command to define the filter coefficients manually instead of training a filter. \n :return: coefficient: numeric value (integer only) List of comma separated values. Each coefficient consists of a real and an imaginary value. Coefficient_1_I,Coefficient_2_Q,Coefficient_2_I,Coefficient_2_Q,...,Coefficient_n_I,Coefficient_n_Q"""response=self._core.io.query_bin_or_ascii_float_list(f'CONFigure:EQUalizer:FPARameters?')returnresponse