Home | History | Annotate | Download | only in snippets

Lines Matching full:endl

3 cout << "Here is a random self-adjoint 4x4 matrix:" << endl << A << endl << endl;
7 cout << "The tridiagonal matrix T is:" << endl << T << endl << endl;
9 cout << "We can also extract the diagonals of T directly ..." << endl;
11 cout << "The diagonal is:" << endl << diag << endl;
13 cout << "The subdiagonal is:" << endl << subdiag << endl;