instance method Matrix#tr

trace -> Integer | Float | Rational | Complex[permalink][rdoc][edit]
tr -> Integer | Float | Rational | Complex

トレース (trace) を返します。

行列のトレース (trace) とは、対角要素の和です。



require 'matrix'
Matrix[[7,6], [3,9]].trace # => 16

trace は正方行列でのみ定義されます。

[EXCEPTION] ExceptionForMatrix::ErrDimensionMismatch:
行列が正方行列でない場合に発生します