Ruby 矩阵 to_matrix() 函数

Ruby 矩阵 to_matrix() 函数

to_matrix() 是Ruby中一个内置的方法,用于返回一个只属于自己的矩阵。

语法 :mat1.to_matrix()

参数 :该函数需要返回的矩阵。

返回值 : 它返回一个矩阵,或者是自己。

例子 1 :

# Ruby program for to_matrix() method in Matrix
   
# Include matrix 
require "matrix"
   
# Initialize a matrix 
mat1 = Matrix[[3, 12], [2, 8]]  
   
# Prints the to_matrix matrix
puts  mat1.to_matrix()

输出:

Matrix[[3, 12], [2, 8]]

例2 :

# Ruby program for to_matrix() method in Matrix
   
# Include matrix 
require "matrix"
   
# Initialize a matrix 
mat1 = Matrix[[1, 0], [6, 1], [1, 2]]  
   
# Prints the to_matrix matrix
puts  mat1.to_matrix()

输出:

Matrix[[1, 0], [6, 1], [1, 2]]

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程