C++での行列の転置関数の例
配列を使用した転置関数の例:#include <iostream> void transposeMatrix(int matrix[][3], int rows, int cols) { int transposedMatrix[cols][rows]; for (int i = 0; i < rows; i++) { for (int j = 0; j < cols; j++) { transposedMatrix[j][i] = matrix[i][j]; } } // 転置された行列の>>More