るりまサーチ

最速Rubyリファレンスマニュアル検索!
36件ヒット [1-36件を表示] (0.030秒)
トップページ > クエリ:param[x] > クラス:Matrix[x] > ライブラリ:matrix[x] > クエリ:==[x]

別のキーワード

  1. net/imap param
  2. win32ole win32ole_param
  3. win32ole_param new
  4. win32ole_param to_s
  5. win32ole_param name

キーワード

検索結果

Matrix#==(other) -> bool (18109.0)

自分自身と other を比較し、同値であれば真(true)を返します。

...自分自身と other を比較し、同値であれば真(true)を返します。

@param other 比較対象のオブジェクト...

Matrix#eql?(other) -> bool (3009.0)

自分自身と other を比較し、同値であれば真(true)を返します。

...自分自身と other を比較し、同値であれば真(true)を返します。

@param other 比較対象のオブジェクト...

Matrix.empty(row_size=0, column_size=0) -> Matrix (27.0)

要素を持たない行列を返します。

...ます。

//emlist[例][ruby]{
require 'matrix'
m = Matrix.empty(2, 0)
m == Matrix[ [], [] ]
# => true
n = Matrix.empty(0, 3)
n == Matrix.columns([ [], [], [] ])
# => true
m * n
# => Matrix[[0, 0, 0], [0, 0, 0]]
//}

@param row_size 行列の行数
@param column_size 行列の列数
@raise Argument...