Ruby 矩阵 hadamard_product()函数

Ruby 矩阵 hadamard_product()函数

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

语法 :mat1.hadamard_product(mat2)

参数 :该函数需要两个矩阵的hadamard_product来完成。

返回值 : 它返回两个矩阵的哈达玛德积。

例子 1 :

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

输出:

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

例2 :

# Ruby program for hadamard_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 hadamard_product 
puts  mat1.hadamard_product(mat2)

输出:

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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程