[docs]defrecall(self,recall_file_path:str)->None:"""SCPI: [SENSe]:CORRection:RECall \n Snippet: driver.applications.k30NoiseFigure.sense.correction.recall(recall_file_path = 'abc') \n Sets the calibration results recall filepath and recalls the calibration results. \n :param recall_file_path: No help available """param=Conversions.value_to_quoted_str(recall_file_path)self._core.io.write(f'SENSe:CORRection:RECall {param}')
defclone(self)->'CorrectionCls':"""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=CorrectionCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group