矩陣乘法運算

//寫出c[i][j]的數學遞推式即可 void MatrixMul(int **a,int **b, int **c, int x, int y, int z) { //a=m*n b=n*p int i,j,k; for (i=0;i<m;i++) //清空目標矩陣C的內容 for(j=0;j<n;j++) c[i][j
相關文章
相關標籤/搜索