what does transpose do to a matrix code example
Example 1: what is the transpose of a matrix
The transpose of a matrix is just a flipped version of
the original matrix. We can transpose a matrix by switching
its rows with its columns. The original rows become the new columns
and the original columns become the new rows.
We denote the transpose of matrix A by AT.
For example:
1 2 3 1 4 7
A = 4 5 6 then AT = 2 5 8
7 8 9 3 6 9
Similarly if
B = 1 2 3 then BT = 1 4
4 5 6 2 5
3 6
Example 2: matrix transpose tiling
const int N_r = 56;
const int N_c = 75;
const int TILE_DIM = 16;
const int outer_Dimc = (N_c - 1) / TILE_DIM + 1;
const int outer_Dimr = (N_r - 1) / TILE_DIM + 1;
int** dest;
int** src;
for (int by = 0; by < outer_Dimr; ++by) {
for (int bx = 0; bx < outer_Dimc; ++bx) {
for (int ty = 0; ty < TILE_DIM; ++ty) {
for (int tx = 0; tx < TILE_DIM; ++tx) {
int col = bx * TILE_DIM + tx;
int row = by * TILE_DIM + ty;
if (row < N_r && col < N_c) {
dest[col][row] = src[row][col];
}
}
}
}
}