るりまサーチ

最速Rubyリファレンスマニュアル検索!
843件ヒット [201-300件を表示] (0.029秒)

別のキーワード

  1. matrix *
  2. matrix []
  3. matrix map
  4. matrix each
  5. matrix index

ライブラリ

キーワード

検索結果

<< < 1 2 3 4 5 ... > >>

Matrix#square? -> bool (23101.0)

正方行列であるなら、 true を返します。

...正方行列であるなら、 true を返します。...

Matrix#unitary? -> bool (23101.0)

行列がユニタリならば true を返します。

...行列がユニタリならば true を返します。

@raise ExceptionForMatrix::ErrDimensionMismatch 行列が正方行列でない場合に発生します...

Matrix#upper_triangular? -> bool (23101.0)

行列が上三角行列ならば true を返します。

...行列が上三角行列ならば true を返します。...

Matrix#rectangular -> [Matrix, Matrix] (20317.0)

行列を実部と虚部に分解したものを返します。

...行列を実部と虚部に分解したものを返します。


//emlist[例][ruby]{
m.rect == [m.real, m.imag] # ==> true for all matrices m
//}

@see Matrix#imaginary, Matrix#real...

Matrix::EigenvalueDecomposition#eigenvalue_matrix -> Matrix (20304.0)

固有値を対角成分に並べた行列を返します。

固有値を対角成分に並べた行列を返します。

絞り込み条件を変える

Matrix#conjugate -> Matrix (20221.0)

複素共役を取った行列を返します。

...複素共役を取った行列を返します。

//emlist[例][ruby]{
require 'matrix'
Matrix
[[Complex(1,2), Complex(0,1), 0], [1, 2, 3]]
# => 1+2i i 0
# 1 2 3
Matrix
[[Complex(1,2), Complex(0,1), 0], [1, 2, 3]].conjugate
# => 1-2i -i 0
# 1 2 3
//}...

Matrix::EigenvalueDecomposition#eigenvector_matrix_inv -> Matrix (20210.0)

左固有ベクトルを縦に並べた行列を返します。

...左固有ベクトルを縦に並べた行列を返します。

これは Matrix::EigenvalueDecomposition#v の逆行列です...

Matrix::EigenvalueDecomposition#eigenvector_matrix -> Matrix (20204.0)

右固有ベクトルを横に並べた行列を返します。

右固有ベクトルを横に並べた行列を返します。

Matrix::EigenvalueDecomposition#eigenvalues -> [Float] (20101.0)

固有値を配列で返します。

固有値を配列で返します。
<< < 1 2 3 4 5 ... > >>