矩陣相乘的小問題
我不知道如何讓兩個不同行和列的矩陣相乘並且得到正確的答案這是我的程式碼
#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
int x = {{2,1,-3},{-2,2,4}};
int y = {{-1,2},{0,-3},{2,1}};
int z;
int i,j;
for(i=0;i<2;i++){
for(j=0;j<3;j++)
cout << setw(5) << x;
cout << endl;
}
cout << endl;
for(i=0;i<3;i++){
for(j=0;j<2;j++)
cout << setw(5) << y;
cout << endl;
}
cout << endl;
for(i=0;i<2;i++){
z=0;
for(j=0;j<2;j++){
z = z + x*y;
cout << setw(5) << z;
}
cout << endl;
}
return 0;
}
感謝各位! 总要下怎么个乘法?
x * y ?????????? ba21 发表于 2022-4-7 21:47
总要下怎么个乘法?
x * y ??????????
對耶! 那要怎麼應用 矩陣是row * column 對吧 是要再設一個函式嗎,不過怎麼讓程式判斷哪個位置乘上哪個位置
页:
[1]