行列の転置を見つけるJavaプログラム
この記事では、行列の転置を見つける方法を理解します。マトリックスには、その要素の行と列の配置があります。 m行n列の行列はm×n行列と呼ぶことができます。行列の転置は、その行を列に、または列を行に交換することによって検出されます。
以下は同じのデモンストレーションです-
入力がであると仮定します −
The matrix is defined as: 1 1 1 1 2 2 2 2 3 3 3 3 4 4 4 4
必要な出力は −
The transpose of the matrix is: 1 2 3 4 1 2 3 4 1 2 3 4 1 2 3 4
アルゴリズム
Step 1 - START Step 2 - Declare two integer matrices namely input_matrix and result_matrix. Step 3 - Define the values. Step 4 - Iterate over each element of the matrix using two for-loops, assign the element at [i][j] position of the matrix to the [j][i] position of the result_matrix. Step 5 - Display the result_matrix. Step 6 - Stop
例1
ここでは、「main」関数の下ですべての操作をバインドします。
public class MatrixTranspose { static final int matrix_size = 4; public static void main (String[] args) { int input_matrix[][] = { {1, 1, 1, 1}, {2, 2, 2, 2}, {3, 3, 3, 3}, {4, 4, 4, 4} }; System.out.println("The matrix is defined as: \n"); for (int i = 0; i < matrix_size; i++) { for (int j = 0; j < matrix_size; j++) { System.out.print(input_matrix[i][j] + " "); } System.out.println(); } int result_matrix[][] = new int[matrix_size][matrix_size]; for (int i = 0; i < matrix_size; i++) for (int j = 0; j < matrix_size; j++) result_matrix[i][j] = input_matrix[j][i]; System.out.println("\nThe transpose of the matrix is: "); for (int i = 0; i < matrix_size; i++) { for (int j = 0; j < matrix_size; j++) { System.out.print(result_matrix[i][j] + " "); } System.out.println(); } } }
出力
The matrix is defined as: 1 1 1 1 2 2 2 2 3 3 3 3 4 4 4 4 The transpose of the matrix is: 1 2 3 4 1 2 3 4 1 2 3 4 1 2 3 4
例2
ここでは、操作をオブジェクト指向プログラミングを示す関数にカプセル化します。
public class MatrixTranspose { static final int matrix_size = 4; static void transpose(int input_matrix[][]) { int result_matrix[][] = new int[matrix_size][matrix_size]; for (int i = 0; i < matrix_size; i++) for (int j = 0; j < matrix_size; j++) result_matrix[i][j] = input_matrix[j][i]; System.out.println("\nThe transpose of the matrix is: "); for (int i = 0; i < matrix_size; i++) { for (int j = 0; j < matrix_size; j++) { System.out.print(result_matrix[i][j] + " "); } System.out.println(); } } public static void main (String[] args) { int input_matrix[][] = { {1, 1, 1, 1}, {2, 2, 2, 2}, {3, 3, 3, 3}, {4, 4, 4, 4} }; System.out.println("The matrix is defined as: \n"); for (int i = 0; i < matrix_size; i++) { for (int j = 0; j < matrix_size; j++) { System.out.print(input_matrix[i][j] + " "); } System.out.println(); } transpose(input_matrix); } }
出力
The matrix is defined as: 1 1 1 1 2 2 2 2 3 3 3 3 4 4 4 4 The transpose of the matrix is: 1 2 3 4 1 2 3 4 1 2 3 4 1 2 3 4
-
正方形の領域を見つけるJavaプログラム
この記事では、正方形の面積を見つける方法を理解します。正方形の面積は、次の式を使用して計算されます- side*side i.e. s2 以下は同じのデモンストレーションです- 正方形の辺がsの場合、正方形の面積はs 2で与えられます。 − 入力 入力が-であると仮定します Length of the side : 4 出力 必要な出力は-になります Area of the square : 16 アルゴリズム Step 1 - START Step 2 - Declare 2 integer values namely my_side and my_area. S
-
行列の転置を見つけるPythonプログラム
この記事では、特定の問題ステートメントを解決するための解決策とアプローチについて学習します。 問題の説明 行列が与えられた場合、転置を同じ行列に格納して表示する必要があります。 行列の転置は、行を列に、列を行に変更することで得られます。つまり、A行列の転置はA[i][j]をA[j][i]に変更することで得られます。 以下に示す実装を見てみましょう- 例 N = 4 def transpose(A): for i in range(N): for j in range(i+1, N): &nbs