So I have a 2D array and I want to assign row 'pth' row of the 2D array to a new 1D array: My code looks like this:
float temp[] = { *aMatrix[p] }; // aMatrix is a 10x10 array
// am trying to assign the pth row
// to temp.
*aMatrix[p] = *aMatrix[max];
*aMatrix[max] = *temp;
float t = bMatrix[p];
bMatrix[p] = bMatrix[max];
After the declaration above, temp should be of length 10 with all of the values of the pth row of aMatrix, but it contains just a value. I have tried all combos of that statement but get nothing but compile errors..
My question is what is the correct way to make this assignment?
Any help would be appreciated. Thanks
*aMatrix[p]gives you a singlefloat- you're dereferencing twice. That makestempan array of 1 float. – jrok Jul 12 '12 at 19:22