Lines Matching refs:endl
2 cout << "The matrix v is:" << endl;
3 cout << v << endl;
6 cout << "The first Householder vector is: v_0 = " << v0.transpose() << endl;
8 cout << "The second Householder vector is: v_1 = " << v1.transpose() << endl;
10 cout << "The third Householder vector is: v_2 = " << v2.transpose() << endl;
13 cout << "The Householder coefficients are: h = " << h.transpose() << endl;
16 cout << "The first Householder reflection is represented by H_0 = " << endl;
17 cout << H0 << endl;
19 cout << "The second Householder reflection is represented by H_1 = " << endl;
20 cout << H1 << endl;
22 cout << "The third Householder reflection is represented by H_2 = " << endl;
23 cout << H2 << endl;
24 cout << "Their product is H_0 H_1 H_2 = " << endl;
25 cout << H0 * H1 * H2 << endl;
29 cout << "If we construct a HouseholderSequence from v and h" << endl;
30 cout << "and convert it to a matrix, we get:" << endl;
31 cout << hhSeqAsMatrix << endl;