Ruby 矩阵 entrywise_product() 函数
entrywise_product() 是Ruby中一个内置的方法,用于返回两个矩阵的哈达玛德积。它接收两个相同维度的矩阵,并产生另一个与操作数相同维度的矩阵,其中每个元素i, j是原始两个矩阵的元素i, j的乘积。
语法 :mat1.entrywise_product(mat2)
参数 :该函数需要两个矩阵的哈达玛德积。
返回值 : 它返回两个矩阵的哈达玛德积。
例子 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]]