from ........Internal.Core import Core
from ........Internal.CommandsGroup import CommandsGroup
from ........Internal import Conversions
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class CoeficientsCls:
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("coeficients", core, parent)
[docs]
def get(self) -> int:
"""
``FETCh:BURSt:AM:PM:COEFicients`` \n
Snippet: ``value: int = driver.applications.k91Wlan.fetch.burst.am.pm.coeficients.get()`` \n
This remote control returns the coefficients of the polynomial regression model used to determine the 'AM/APM' result
display. See 'AM/PM' for details.
"""
response = self._core.io.query_str(f'FETCh:BURSt:AM:PM:COEFicients?')
return Conversions.str_to_int(response)