[docs]classScoveredCls:"""Scovered commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("scovered",core,parent)
[docs]defget(self)->float:"""SCPI: [SENSe]:CORRection:FRESponse:USER:SCOVered \n Snippet: value: float = driver.sense.correction.fresponse.user.scovered.get() \n Indicates whether the frequency correction file covers the full measurement span. \n :return: covered: 0 | 1 0 Span not fully covered 1 Full measurement span is covered"""response=self._core.io.query_str(f'SENSe:CORRection:FRESponse:USER:SCOVered?')returnConversions.str_to_float(response)