Ruby 矩阵 zero()函数

Ruby 矩阵 zero()函数

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

语法 :mat1.zero(N, M)

参数 :该函数接受两个强制性的参数N和M,这是该矩阵的大小。

返回值 :它返回大小为 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]]

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程