原文: https://www.programiz.com/c-programming/examples/matrix-multiplication

在此示例中,您将学习将两个矩阵相乘并使用用户定义的函数进行显示。

要理解此示例,您应该了解以下 C 编程主题:


该程序要求用户输入两个矩阵的大小(行和列)。

为了将两个矩阵相乘,第一个矩阵的列数应等于第二个矩阵的行数

下面的程序要求两个矩阵的行数和列数,直到满足上述条件。

然后,执行两个矩阵的相乘,结果显示在屏幕上。

为此,我们创建了三个函数:

  • enterData() - 从用户那里获取矩阵元素。
  • multiplyMatrices() - 将两个矩阵相乘。
  • display() - 显示相乘后的结果矩阵。

通过将矩阵传递给函数来相乘

  1. #include <stdio.h>
  2. void enterData(int first[][10], int second[][10], int r1, int c1, int r2, int c2);
  3. void multiplyMatrices(int first[][10], int second[][10], int multResult[][10], int r1, int c1, int r2, int c2);
  4. void display(int mult[][10], int r1, int c2);
  5. int main() {
  6. int first[10][10], second[10][10], mult[10][10], r1, c1, r2, c2;
  7. printf("Enter rows and column for the first matrix: ");
  8. scanf("%d %d", &r1, &c1);
  9. printf("Enter rows and column for the second matrix: ");
  10. scanf("%d %d", &r2, &c2);
  11. // Taking input until columns of the first matrix is equal to the rows of the second matrix
  12. while (c1 != r2) {
  13. printf("Error! Enter rows and columns again.\n");
  14. printf("Enter rows and columns for the first matrix: ");
  15. scanf("%d%d", &r1, &c1);
  16. printf("Enter rows and columns for the second matrix: ");
  17. scanf("%d%d", &r2, &c2);
  18. }
  19. // Function to take matrices data
  20. enterData(first, second, r1, c1, r2, c2);
  21. // Function to multiply two matrices.
  22. multiplyMatrices(first, second, mult, r1, c1, r2, c2);
  23. // Function to display resultant matrix after multiplication.
  24. display(mult, r1, c2);
  25. return 0;
  26. }
  27. void enterData(int first[][10], int second[][10], int r1, int c1, int r2, int c2) {
  28. printf("\nEnter elements of matrix 1:\n");
  29. for (int i = 0; i < r1; ++i) {
  30. for (int j = 0; j < c1; ++j) {
  31. printf("Enter a%d%d: ", i + 1, j + 1);
  32. scanf("%d", &first[i][j]);
  33. }
  34. }
  35. printf("\nEnter elements of matrix 2:\n");
  36. for (int i = 0; i < r2; ++i) {
  37. for (int j = 0; j < c2; ++j) {
  38. printf("Enter b%d%d: ", i + 1, j + 1);
  39. scanf("%d", &second[i][j]);
  40. }
  41. }
  42. }
  43. void multiplyMatrices(int first[][10], int second[][10], int mult[][10], int r1, int c1, int r2, int c2) {
  44. // Initializing elements of matrix mult to 0.
  45. for (int i = 0; i < r1; ++i) {
  46. for (int j = 0; j < c2; ++j) {
  47. mult[i][j] = 0;
  48. }
  49. }
  50. // Multiplying first and second matrices and storing in mult.
  51. for (int i = 0; i < r1; ++i) {
  52. for (int j = 0; j < c2; ++j) {
  53. for (int k = 0; k < c1; ++k) {
  54. mult[i][j] += first[i][k] * second[k][j];
  55. }
  56. }
  57. }
  58. }
  59. void display(int mult[][10], int r1, int c2) {
  60. printf("\nOutput Matrix:\n");
  61. for (int i = 0; i < r1; ++i) {
  62. for (int j = 0; j < c2; ++j) {
  63. printf("%d ", mult[i][j]);
  64. if (j == c2 - 1)
  65. printf("\n");
  66. }
  67. }
  68. }

输出

  1. Enter rows and column for the first matrix: 2
  2. 3
  3. Enter rows and column for the second matrix: 3
  4. 2
  5. Enter elements of matrix 1:
  6. Enter a11: 3
  7. Enter a12: -2
  8. Enter a13: 5
  9. Enter a21: 3
  10. Enter a22: 0
  11. Enter a23: 4
  12. Enter elements of matrix 2:
  13. Enter b11: 2
  14. Enter b12: 3
  15. Enter b21: -9
  16. Enter b22: 0
  17. Enter b31: 0
  18. Enter b32: 4
  19. Output Matrix:
  20. 24 29
  21. 6 25