Home | History | Annotate | Download | only in snippets

Lines Matching refs:endl

4 cout << "Here is the matrix m:" << endl << m << endl;
7 << endl << lu.matrixLU() << endl;
8 cout << "Here is the L part:" << endl;
11 cout << l << endl;
12 cout << "Here is the U part:" << endl;
14 cout << u << endl;
15 cout << "Let us now reconstruct the original matrix m:" << endl;
16 cout << lu.permutationP().inverse() * l * u * lu.permutationQ().inverse() << endl;