.. highlightlang:: us .. _iscomplex: iscomplex ========= .. index:: iscomplex .. us.tag iscomplex GERMAN Die :ref:`iscomplex` Funktion prüft, ob ihr Argument eine komplexe Matrix ist. .. function:: bool = iscomplex(m) .. us.return **Returnwert** *bool* ist TRUE (1), wenn das Argument eine komplexe Matrix ist und FALSE (0), wenn das Argument von einem anderen Typ ist. .. us.params **Parameter** .. uparam:: m *m* ist eine Matrix beliebigen Typs oder eine Funktion. .. us.example **Beispiel** :: a = 1 + 3i iscomplex(a) 1.0000 iscomplex(sin) 0.0000 iscomplex(1.12) 0.0000 .. seealso:: :ref:`uberblick-mathematik`, :ref:`type`, :ref:`isreal`, :ref:`isstring` :sub:`id-332019`