Ruby 矩阵 hstack() 函数

Ruby 矩阵 hstack() 函数

hstack() 是Ruby中的一个内置方法,通过将接收器与给定的矩阵水平堆叠,返回一个新的矩阵。
它需要一个水平堆叠的矩阵。

语法 :mat1.hstack(mat2)

参数 : 该函数需要一个要水平堆叠的矩阵。

返回值 :堆叠完成后返回结果矩阵。

例子 1 :

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

输出:

Matrix[[1, 21, 4, 6], [31, 18, 3, 9]]

例2 :

#Ruby program for hstack() method in Matrix
  
#Include matrix
require "matrix"
  
#Initialize a matrix
    mat1
    = Matrix[[ 3, 5, 9 ], [ 10, 19, 123 ]] mat2 = Matrix[[ 12, 12 ], [ 19, 18 ]]
  
#prints the resultant matrix
                                                  puts mat1.hstack(mat2)

输出:

Matrix[[3, 5, 9, 12, 12], [10, 19, 123, 19, 18]]

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程