.. highlightlang:: us .. index:: atan .. _atan: atan ==== .. us.tag atan GERMAN math-trigo :ref:`atan` berechnet den arcus tangens seines Arguments. .. function:: r = atan(m) .. us.return **Returnwert** *r* ist der arcus tangens von *m*. .. us.params **Parameter** .. uparam:: m *m* ist eine reelle oder komplexe Matrix. .. us.comment **Kommentar** Die Berechnung erfolgt nach der Formel ``(1 ./ 2i) .* log((1 + 1i .* x) ./ (1 - 1i .* x))``. .. us.example **Beispiel** :: * printf("%.17f\n", atan(1)*4); 3.14159265358979310 .. seealso:: :ref:`uberblick-mathematik`, :ref:`atan2`, :ref:`tan` :sub:`id-1320956`