Ruby 2.3.0 リファレンスマニュアル > ライブラリ一覧 > matrixライブラリ > Matrixクラス > hstack
hstack(*matrices) -> Matrix
[permalink][rdoc]行列 self と matrices を横に並べた行列を生成します。
Matrix.hstack(self, *matrices) と同じです。
require 'matrix'
x = Matrix[[1, 2], [3, 4]]
y = Matrix[[5, 6], [7, 8]]
x.hstack(y) # => Matrix[[1, 2, 5, 6], [3, 4, 7, 8]]
[SEE_ALSO] Matrix.hstack, Matrix#vstack