Ruby 矩阵 scalar()函数
scalar() 是Ruby中的一个内置方法,用于返回一个N x N的对角线矩阵,其中每个对角线元素都是值。
语法 :mat1.scalar(N, value)
参数 :该函数接受两个强制性参数N和value,其中N是身份矩阵的大小,value是要分配给对角线的值。
返回值 :它返回对角线矩阵。
例子 1 :
# Ruby program for scalar() method in Matrix
# Include matrix
require "matrix"
# Initialize a matrix
# using scalar method
mat1 = Matrix.scalar(2 ,6)
# Print the matrix
puts mat1
输出:
Matrix[[6, 0], [0, 6]]
例2 :
# Ruby program for scalar() method in Matrix
# Include matrix
require "matrix"
# Initialize a matrix
# using scalar method
mat1 = Matrix.scalar(4 , 2)
# Print the matrix
puts mat1
输出:
Matrix[[2, 0, 0, 0], [0, 2, 0, 0], [0, 0, 2, 0], [0, 0, 0, 2]]