2014-10-31 1 views

답변

1

당신은 행렬 곱셈을 사용할 수 있습니다, 예를 들어,

SparseMatrix<double> X(10,14); 
for (int i = 0; i<14; i++) X.coeffRef(0, i) += (double) (i+1); 

SparseMatrix<double> Y(14, 10); 
for (int i = 0; i<10; i++) Y.coeffRef(i, i) += 1.0;  

cout << X*Y << endl << endl;