Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
*aMatrix[p] gives you a single float - you're dereferencing twice. That makes temp an array of 1 float. – jrok Jul 12 '12 at 19:22

3 Answers

It looks like you are confusing the pointers a bit. You can't copy all the members using a simple assignment. C++ does not support memberwise assignment of arrays. You should iterate through the elements like so:

float temp[10];

// copy the pth row elements into temp array.
for(int i=0; i<10; i++) {

   temp[i] = aMatrix[p][i]; 
}

You can also do it this second way if your aMatrix could possibly change lengths at some point:

int aLength = sizeof(aMatrix[p]) / sizeof(float);

float temp[aLength];

// copy the pth row elements into temp array.
for(int i=0; i < aLength; i++) {

   temp[i] = aMatrix[p][i]; 
}
share|improve this answer
Thanks I was just beginning to think the same thing but was hoping there was a more elegan way of doing that. – Micheal Noel Jul 12 '12 at 19:24

have you tried

float * temp = &(aMatrix[p][0]);

Or maybe you want to just manually copy the array, in which case, you should do so with a for loop

share|improve this answer
The elegant did not work as I had hoped. I was trying to avoid the manual way. – Micheal Noel Jul 12 '12 at 19:41
@MichealNoel the fact of the manner is that the manual way is really the only way to COPY the values over. – Sam I am Jul 12 '12 at 19:42
Thanks, that is what I will do now. – Micheal Noel Jul 12 '12 at 19:43

Why not use std::array? It is, unlike C-style arrays, assignable.

typedef std::array<float, 10> Row;

std::array<Row, 10> aMatrix;

Row temp = aMatrix[5];
share|improve this answer
Thanks. At this point in this assignment all the work is in place would have to make some major changes to implement that. – Micheal Noel Jul 12 '12 at 19:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.