3件ヒット
[1-3件を表示]
(0.058秒)
検索結果
-
Matrix
# symmetric? -> bool (105622.0) -
行列が対称ならば true を返します。
行列が対称ならば true を返します。
@raise ExceptionForMatrix::ErrDimensionMismatch 行列が正方行列でない場合に発生します -
Matrix
# antisymmetric? -> bool (69730.0) -
行列が反対称行列 (交代行列、歪〔わい〕対称行列とも) ならば true を返します。
行列が反対称行列 (交代行列、歪〔わい〕対称行列とも) ならば true を返します。
@raise ExceptionForMatrix::ErrDimensionMismatch 行列が正方行列でない場合に発生します
//emlist[][ruby]{
require 'matrix'
Matrix[[0, -2, Complex(1, 3)], [2, 0, 5], [-Complex(1, 3), -5, 0]].antisymmetric? # => true
Matrix.empty.antisymmetric? # => true
Matrix[[1, 2, 3], [... -
Matrix
# skew _ symmetric? -> bool (69730.0) -
行列が反対称行列 (交代行列、歪〔わい〕対称行列とも) ならば true を返します。
行列が反対称行列 (交代行列、歪〔わい〕対称行列とも) ならば true を返します。
@raise ExceptionForMatrix::ErrDimensionMismatch 行列が正方行列でない場合に発生します
//emlist[][ruby]{
require 'matrix'
Matrix[[0, -2, Complex(1, 3)], [2, 0, 5], [-Complex(1, 3), -5, 0]].antisymmetric? # => true
Matrix.empty.antisymmetric? # => true
Matrix[[1, 2, 3], [...