cond

cond berechnet die Konditionszahl einer Matrix.

rsCond = cond(m)

Returnwert

rsCond ist die Konditionszahl der Matrix m.

Parameter

m

m ist eine reelle oder komplexe Matrix.

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

id-783354