37 lines
877 B
C++
37 lines
877 B
C++
#include <iostream>
|
|
#include "matrix.h"
|
|
|
|
#if !defined(ARRAY_SIZE)
|
|
#define ARRAY_SIZE(x) (sizeof((x)) / sizeof((x)[0]))
|
|
#endif
|
|
|
|
int main() {
|
|
int am[2][3] = {
|
|
{1,2,3},
|
|
{4,5,6},
|
|
};
|
|
int bm[3][2] = {
|
|
{1,2},
|
|
{3,4},
|
|
{5,6}
|
|
};
|
|
|
|
Matrix<int> a(ARRAY_SIZE(am), ARRAY_SIZE(am[0]), am[0], ARRAY_SIZE(am)*ARRAY_SIZE(am[0]));
|
|
Matrix<int> b(ARRAY_SIZE(bm), ARRAY_SIZE(bm[0]), bm[0], ARRAY_SIZE(bm)*ARRAY_SIZE(bm[0]));
|
|
Matrix<int> c;
|
|
|
|
try {
|
|
c = a * b;
|
|
for (unsigned int i = 0; i < c.rowNum(); i++) {
|
|
for (unsigned int j = 0; j < c.colNum(); j++) {
|
|
std::cout << c[i][j] << " ";
|
|
}
|
|
std::cout << std::endl;
|
|
}
|
|
} catch (MatrixException& e) {
|
|
std::cerr << e.message() << std::endl;
|
|
return e.errorCode();
|
|
}
|
|
|
|
} /* main() */
|