Home | History | Annotate | Download | only in snippets

Lines Matching full:endl

3 cout << "Here is a random symmetric 5x5 matrix, A:" << endl << A << endl << endl;
6 cout << "The eigenvalues of A are:" << endl << es.eigenvalues() << endl;
7 cout << "The matrix of eigenvectors, V, is:" << endl << es.eigenvectors() << endl << endl;
10 cout << "Consider the first eigenvalue, lambda = " << lambda << endl;
12 cout << "If v is the corresponding eigenvector, then lambda * v = " << endl << lambda * v << endl;
13 cout << "... and A * v = " << endl << A * v << endl << endl;
17 cout << "Finally, V * D * V^(-1) = " << endl << V * D * V.inverse() << endl;