hstack(*matrices) -> Matrix
[permalink][rdoc][edit]-
行列 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]]
- [PARAM] matrices:
- 並べる行列。すべての行列の行数がselfの行数と一致していなければならない
- [EXCEPTION] ExceptionForMatrix::ErrDimensionMismatch:
- 行数の異なる行列がある場合に発生します
[SEE_ALSO] Matrix.hstack, Matrix#vstack