Contents
repeat_matrix_in_col()
Repeat a matrix vertically n times.
Repeat a matrix vertically n times (stack n copies).
G (numpy.ndarray) – 2D matrix.
n (int) – Number of repetitions.
Matrix of shape (n * G.shape[0], G.shape[1]).
numpy.ndarray