HomeSort by relevance Sort by last modified time
    Searched refs:endl (Results 176 - 200 of 1186) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/eigen/doc/snippets/
SelfAdjointEigenSolver_eigenvectors.cpp 4 << endl << es.eigenvectors().col(1) << endl;
SelfAdjointView_eigenvalues.cpp 3 cout << "The eigenvalues of the 3x3 matrix of ones are:" << endl << eivals << endl; variable
TopicAliasing_block.cpp 3 cout << "Here is the matrix mat:\n" << mat << endl; variable
7 cout << "After the assignment, mat = \n" << mat << endl; variable
TopicAliasing_block_correct.cpp 3 cout << "Here is the matrix mat:\n" << mat << endl; variable
7 cout << "After the assignment, mat = \n" << mat << endl; variable
Tutorial_ReshapeMat2Mat.cpp 6 cout << "M2:" << endl << M2 << endl variable
tut_arithmetic_transpose_aliasing.cpp 2 cout << "Here is the matrix a:\n" << a << endl; variable
5 cout << "and the result of the aliasing effect:\n" << a << endl variable
tut_arithmetic_transpose_inplace.cpp 2 cout << "Here is the initial matrix a:\n" << a << endl; variable
6 cout << "and after being transposed:\n" << a << endl variable
HouseholderSequence_HouseholderSequence.cpp 2 cout << "The matrix v is:" << endl; variable
3 cout << v << endl; variable
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; variable
17 cout << H0 << endl; variable
19 cout << "The second Householder reflection is represented by H_1 = " << endl; variable
20 cout << H1 << endl; variable
22 cout << "The third Householder reflection is represented by H_2 = " << endl; variable
23 cout << H2 << endl; variable
24 cout << "Their product is H_0 H_1 H_2 = " << endl; variable
25 cout << H0 * H1 * H2 << endl; variable
29 cout << "If we construct a HouseholderSequence from v and h" << endl; variable
30 cout << "and convert it to a matrix, we get:" << endl; variable
31 cout << hhSeqAsMatrix << endl; variable
    [all...]
ComplexSchur_compute.cpp 4 cout << "The matrix T in the decomposition of A is:" << endl << schur.matrixT() << endl;
6 cout << "The matrix T in the decomposition of A^(-1) is:" << endl << schur.matrixT() << endl;
Cwise_atan.cpp 2 cout << v.atan() << endl;
Cwise_cosh.cpp 2 cout << cosh(v) << endl;
Cwise_minus_equal.cpp 3 cout << v << endl; variable
Cwise_plus_equal.cpp 3 cout << v << endl; variable
Cwise_quotient.cpp 2 cout << v/w << endl; variable
Cwise_sinh.cpp 2 cout << sinh(v) << endl;
Cwise_slash_equal.cpp 3 cout << v << endl; variable
Cwise_tanh.cpp 2 cout << tanh(v) << endl;
Cwise_times_equal.cpp 3 cout << v << endl; variable
DenseBase_LinSpaced_seq.cpp 1 cout << VectorXi::LinSpaced(Sequential,4,7,10).transpose() << endl;
2 cout << VectorXd::LinSpaced(Sequential,5,0.0,1.0).transpose() << endl;
HessenbergDecomposition_compute.cpp 4 cout << "The matrix H in the decomposition of A is:" << endl << hd.matrixH() << endl;
6 cout << "The matrix H in the decomposition of 2A is:" << endl << hd.matrixH() << endl;
  /external/eigen/doc/examples/
QuickStart_example2_dynamic.cpp 11 cout << "m =" << endl << m << endl; local
14 cout << "m * v =" << endl << m * v << endl; local
QuickStart_example2_fixed.cpp 11 cout << "m =" << endl << m << endl; local
14 cout << "m * v =" << endl << m * v << endl; local
TutorialLinAlgRankRevealing.cpp 13 cout << "Here is the matrix A:\n" << A << endl; local
15 cout << "The rank of A is " << lu_decomp.rank() << endl;
17 << lu_decomp.kernel() << endl;
19 << lu_decomp.image(A) << endl; // yes, have to pass the original A
Tutorial_BlockOperations_colrow.cpp 12 cout << "Here is the matrix m:" << endl << m << endl; local
13 cout << "2nd Row: " << m.row(1) << endl;
16 cout << m << endl; local
tut_arithmetic_scalar_mul_div.cpp 12 std::cout << "a * 2.5 =\n" << a * 2.5 << std::endl;
13 std::cout << "0.1 * v =\n" << 0.1 * v << std::endl;
14 std::cout << "Doing v *= 2;" << std::endl; member in class:std
16 std::cout << "Now v =\n" << v << std::endl; member in class:std

Completed in 133 milliseconds

1 2 3 4 5 6 78 91011>>