from ........Internal.Core import Core
from ........Internal.CommandsGroup import CommandsGroup
from ........Internal import Conversions
from ........ import repcap
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class MatrixCls:
"""Matrix commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("matrix", core, parent)
[docs] def get(self, mimoTap=repcap.MimoTap.Default) -> float:
"""SCPI: [SOURce<HW>]:FSIMulator:MIMO:TAP<CH>:ANTenna:POLarization:MATRix \n
Snippet: value: float = driver.source.fsimulator.mimo.tap.antenna.polarization.matrix.get(mimoTap = repcap.MimoTap.Default) \n
No command help available \n
:param mimoTap: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Tap')
:return: ant_pol_matrix: No help available"""
mimoTap_cmd_val = self._cmd_group.get_repcap_cmd_value(mimoTap, repcap.MimoTap)
response = self._core.io.query_str(f'SOURce<HwInstance>:FSIMulator:MIMO:TAP{mimoTap_cmd_val}:ANTenna:POLarization:MATRix?')
return Conversions.str_to_float(response)