假設我們有一個3×3的矩陣是這樣的:矩陣與向量乘法
1 3 4
2 6 8
9 0 12
有些載體是這樣的:
1 2 3
我的問題是:如何實現它,這樣我可以乘一個接一個?我有示例代碼:
#include <cstdlib>
#include <math.h>
#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
int a[3][3]={{ 2,4,3},{1,5,7},{0,2,3}};
int b[]={2,5,6};
int c[3];
for (int i=0;i<3;i++){
c[i]=0;
}
for (int i=0;i<3;i++){
for (int j=0;j<3;j++){
c[i]+=(a[i][j]*b[j]);
}
}
for (int i=0;i<3;i++){
cout<<a[i]<<" "<<endl;
}
system("PAUSE");
return EXIT_SUCCESS;
}
我得到的結果是:
0x22ff10
0x22ff1c
0x22ff28
你不能打印那樣的數組。你需要編寫一個循環來分別打印每個元素。 – Mysticial