Programma C per moltiplicare due matrici utilizzando array multidimensionali

In questo esempio, imparerai a moltiplicare due matrici e visualizzarle utilizzando funzioni definite dall'utente.

Per comprendere questo esempio, è necessario conoscere i seguenti argomenti di programmazione in C:

  • C Arrays
  • C Array multidimensionali

Questo programma chiede all'utente di inserire la dimensione (righe e colonne) di due matrici.

Per moltiplicare due matrici, il numero di colonne della prima matrice dovrebbe essere uguale al numero di righe della seconda matrice .

Il programma seguente richiede il numero di righe e colonne di due matrici fino a quando la condizione di cui sopra non è soddisfatta.

Quindi, viene eseguita la moltiplicazione di due matrici e il risultato viene visualizzato sullo schermo.

Per farlo abbiamo creato tre funzioni:

  • getMatrixElements() - prendere l'input degli elementi della matrice dall'utente.
  • multiplyMatrices() - moltiplicare due matrici.
  • display() - per visualizzare la matrice risultante dopo la moltiplicazione.

Moltiplica le matrici passandole a una funzione

 #include // function to get matrix elements entered by the user void getMatrixElements(int matrix()(10), int row, int column) ( printf("Enter elements: "); for (int i = 0; i < row; ++i) ( for (int j = 0; j < column; ++j) ( printf("Enter a%d%d: ", i + 1, j + 1); scanf("%d", &matrix(i)(j)); ) ) ) // function to multiply two matrices void multiplyMatrices(int first()(10), int second()(10), int result()(10), int r1, int c1, int r2, int c2) ( // Initializing elements of matrix mult to 0. for (int i = 0; i < r1; ++i) ( for (int j = 0; j < c2; ++j) ( result(i)(j) = 0; ) ) // Multiplying first and second matrices and storing it in result for (int i = 0; i < r1; ++i) ( for (int j = 0; j < c2; ++j) ( for (int k = 0; k < c1; ++k) ( result(i)(j) += first(i)(k) * second(k)(j); ) ) ) ) // function to display the matrix void display(int result()(10), int row, int column) ( printf("Output Matrix:"); for (int i = 0; i < row; ++i) ( for (int j = 0; j < column; ++j) ( printf("%d ", result(i)(j)); if (j == column - 1) printf(""); ) ) ) int main() ( int first(10)(10), second(10)(10), result(10)(10), r1, c1, r2, c2; printf("Enter rows and column for the first matrix: "); scanf("%d %d", &r1, &c1); printf("Enter rows and column for the second matrix: "); scanf("%d %d", &r2, &c2); // Taking input until // 1st matrix columns is not equal to 2nd matrix row while (c1 != r2) ( printf("Error! Enter rows and columns again."); printf("Enter rows and columns for the first matrix: "); scanf("%d%d", &r1, &c1); printf("Enter rows and columns for the second matrix: "); scanf("%d%d", &r2, &c2); ) // get elements of the first matrix getMatrixElements(first, r1, c1); // get elements of the second matrix getMatrixElements(second, r2, c2); // multiply two matrices. multiplyMatrices(first, second, result, r1, c1, r2, c2); // display the result display(result, r1, c2); return 0; )

Produzione

 Immettere righe e colonne per la prima matrice: 2 3 Immettere righe e colonne per la seconda matrice: 3 2 Immettere elementi: Immettere a11: 2 Immettere a12: -3 Immettere a13: 4 Immettere a21: 53 Immettere a22: 3 Immettere a23: 5 Immettere elementi: Immettere a11: 3 Immettere a12: 3 Immettere a21: 5 Immettere a22: 0 Immettere a31: -3 Immettere a32: 4 Matrice di output: -21 22159179

Articoli interessanti...