📜  红宝石 |矩阵 entrywise_product()函数

📅  最后修改于: 2022-05-13 01:55:51.599000             🧑  作者: Mango

红宝石 |矩阵 entrywise_product()函数

entrywise_product()是 Ruby 中的一个内置方法,它返回两个矩阵的 hadamard_product。它采用两个相同维度的矩阵并生成另一个与操作数相同维度的矩阵,其中每个元素 i, j 是原始两个矩阵的元素 i, j 的乘积。

示例 1

# Ruby program for entrywise_product() method in Matrix
   
# Include matrix 
require "matrix"
   
# Initialize a matrix 
mat1 =  Matrix[[1, 21], [31, 18]]  
mat2 =  Matrix[[1, 3], [3, 4]]   
   
# prints entrywise_product 
puts  mat1.entrywise_product(mat2)

输出

Matrix[[1, 63], [93, 72]]

示例 2

# Ruby program for entrywise_product() method in Matrix
  
# Include matrix 
require "matrix"
  
# Initialize a matrix 
mat1 =  Matrix[[1, 31], [13, 28], [3, 4]]  
mat2 =  Matrix[[32, 3], [32, 74], [43, 3]]   
  
# prints entrywise_product 
puts  mat1.entrywise_product(mat2)

输出

Matrix[[32, 93], [416, 2072], [129, 12]]