Is there a way like in MATLAB to assign many values in an array's row?
Let's say you have a matrix M(5,5) and a Vector V = [1, 2, 3, 4, 5]
In Matlab, If you wanted the first row to be filled up with vector V, you would write:
M(1,:) = V
Is there something similar in Excel VBA instead of looping through each column of the first row and assign the value V(j) every time?
GetRowbut notSetRow. A little recoding should give the routine you seek.