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

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

红宝石 |矩阵 zero()函数

zero()是 Ruby 中的一个内置方法,它返回一个 N x M 零矩阵,其中每个元素都为零。

示例 1

# Ruby program for zero() method in Matrix
   
# Include matrix 
require "matrix"
   
# Initialize a matrix
# using zero method 
mat1 = Matrix.zero(4 , 3)
   
# Print the matrix
puts mat1

输出

Matrix[[0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0]]

示例 2

# Ruby program for zero() method in Matrix
   
# Include matrix 
require "matrix"
   
# Initialize a matrix
# using zero method 
mat1 = Matrix.zero(2, 2)
   
# Print the matrix
puts mat1

输出

Matrix[[0, 0], [0, 0]]