Is it possible to copy a 1dimensional array into a 2D array?

 
I want to copy a 1D array into the a 2d array. Here's an example of what I want to do:


double a[][33];
double b[33];

//resize first dimension
ArrayResize(a, 10);

for(int i=0,i<ArraySize(b),i++) {
   ArrayCopy(a[i], b);
}




Is this possible??? I've seen examples of 2D array's being copied into other 2D arrays, but haven't found any trying to copy 1D arrays into 2D arrays. Any help would be appreciated.

Loopy