If I have a matrix
1, 1, 2, 2 1, 2, 2, 3 2, 2, 3, 3 2, 3, 3, 3
What operation do I need to perform to create a "scaled" version:
1, 1, 1, 1, 2, 2, 2, 2 1, 1, 1, 2, 2, 2, 2, 2 1, 1, 1, 2, 2, 2, 2, 3 1, 1, 2, 2, 2, 2, 3, 3 1, 2, 2, 2, 2, 3, 3, 3 2, 2, 2, 2, 3, 3, 3, 3 2, 2, 2, 3, 3, 3, 3, 3 2, 2, 3, 3, 3, 3, 3, 3 2, 3, 3, 3, 3, 3, 3, 3
I thought it was a Product. Or is there a vector operation?