1. 首页
  2. 课程学习
  3. C++/C
  4. C语言 矩阵相乘 矩阵转置

C语言 矩阵相乘 矩阵转置

上传者: 2018-12-20 18:33:23上传 CPP文件 4.19KB 热度 78次
C语言 矩阵相乘 矩阵转置 //求转置矩阵 void Transpose2(double a[][MAXSIZE], double b[][MAXSIZE], int row, int col); void Transpose1to2(double a[MAXSIZE], double b[][MAXSIZE]); //显示矩阵 void displayMatrix(double a[][MAXSIZE], int row, int col, char b[]); //显示向量 void displayMatrix(double a[MAXSIZE], int col, char b[]); //高斯消元法 求逆矩阵 bool Gauss(double A[][MAXSIZE], double B[][MAXSIZE], int n); //矩阵乘以矩阵 void Matrix_Mult(double A[][MAXSIZE], double B[][MAXSIZE], double C[][MAXSIZE], int row1, int col1, int row2, int col2); //矩阵乘以向量 void MatrixV_Mul t(double A[][MAXSIZE], double B[MAXSIZE], double C[MAXSIZE], int row1, int col1, int row2);
下载地址
用户评论