.. highlightlang:: us .. index:: cond .. _cond: cond ==== .. us.tag cond GERMAN math-lin-alg :ref:`cond` berechnet die Konditionszahl einer Matrix. .. function:: rsCond = cond(m) .. us.return **Returnwert** *rsCond* ist die Konditionszahl der Matrix *m*. .. us.params **Parameter** .. uparam:: m *m* ist eine reelle oder komplexe Matrix. .. us.example **Beispiel** :: * norm(hilb(10)) * norm(hilb(10)^-1) 3.535e+013 * cond(hilb(10)) 3.535e+013 * rcond = 1/cond(hilb(10)) * printf("%e\n%e\n", rcond, _eps); 2.828556e-14 2.220446e-16 .. seealso:: :ref:`uberblick-mathematik`, :ref:`norm`, :ref:`hilb` :sub:`id-783354`