Home | History | Annotate | Download | only in snippets

Lines Matching full:endl

3 cout << "Here is a random symmetric matrix, A:" << endl << A << endl;
6 cout << "and a random postive-definite matrix, B:" << endl << B << endl << endl;
9 cout << "The eigenvalues of the pencil (A,B) are:" << endl << es.eigenvalues() << endl;
10 cout << "The matrix of eigenvectors, V, is:" << endl << es.eigenvectors() << endl << endl;
13 cout << "Consider the first eigenvalue, lambda = " << lambda << endl;
15 cout << "If v is the corresponding eigenvector, then A * v = " << endl << A * v << endl;
16 cout << "... and lambda * B * v = " << endl << lambda * B * v << endl << endl;