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

We have this matrix of 4x4:

a b c d

e f g h

1 2 3 4

5 6 7 8

By transposing the matrix we get:

a e 1 5

b f 2 6

c g 3 7

d h 4 8

My question is:

What matrix do we get by "transposing column 2 with row 4?" I need to code this, and I can do it. But firstly I need to understand the operation in itself, what does it imply/mean? I never thought of "transposing a column with a line".

Thank you. S

share|improve this question
Is this homework? If so, it is advantageous to tag it as such. – Andrew Thompson Aug 30 '12 at 13:03
Removed "java" tag as the question is about linear algebra not Java. – aetheria Aug 30 '12 at 13:06

3 Answers

AFAIK, It means you are to swap column 2 and row 4, instead of column 1 with row 1 and column2 with row 2 etc.

The code is basically the same as a full transposition, except you only have one column/row

share|improve this answer

Matrix transposition is a mathematical operation in which a matrix's rows become its columns. From a mathematical perspective, there's no real benefit to transposing only one row in a M x N matrix, but the code to transpose one row is not much different than transposing an entire matrix.

The matrix you get after the transposition would be:

a b 1 d

e f 2 h

c g 3 7

5 6 4 8
share|improve this answer

This is a full transposition:

public Transposer() {
    public char[][] transpose(char[][] input) {    
        if (input.length == 0) {
            return input;
        }
        char[][] output = new char[input[0].length][input.length];

        for (int i = 0; i < input.length; i++) {
            for (int j = 0; j < input[i].length; j++) {
                output[j][i] = input[i][j];
            }
        }

        return output;
    }
}
share|improve this answer

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.