るりまサーチ

最速Rubyリファレンスマニュアル検索!
7件ヒット [1-7件を表示] (0.103秒)
トップページ > クエリ:i[x] > クエリ:h[x] > クエリ:hadamard_product[x]

別のキーワード

  1. _builtin to_h
  2. hash to_h
  3. array to_h
  4. enumerable to_h
  5. env to_h

ライブラリ

クラス

検索結果

Matrix#hadamard_product(m) -> Matrix (21307.0)

アダマール積(要素ごとの積)を返します。

...ダマール積(要素ごとの積)を返します。

@raise ExceptionForMatrix::ErrDimensionMismatch 行や列の要素数が一致しない時に発生します。

//emlist[例][ruby]{
require 'matrix'

Matrix[[1,2], [3,4]].hadamard_product(Matrix[[1,2], [3,2]]) # => Matrix[[1, 4], [9, 8]]
//}...