hstack(*matrices)
public
Returns a new matrix resulting by
stacking horizontally the receiver with the given matrices
x = Matrix[[1, 2], [3, 4]]
y = Matrix[[5, 6], [7, 8]]
x.hstack(y)
Show source
def hstack(*matrices)
self.class.hstack(self, *matrices)
end