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