Hi

So far every time I have created an array, I have declared it, Redim'ed it, and then used a loop to fill it up with values. However, let's says I just wanted to create a small 2 by 3 array, and wanted to explicitly fill it up with values, how would I do this?
Dim Arr() As Double
ReDim Arr(0 To 2, 0 To 3) As Double
 ' Then instead of creating a loop, or 6 lines of individual insertions, I would like to fill it up in style similar to...
Arr=[1 , 2 , 3 ; 4 , 5 , 6 ; 7 , 8 , 9]
'I don't know if that's valid code, but it's doable in Matlab.
Thanks for any answers :-)