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

1 2 3 4 5 6 78 91011>>

  /external/eigen/doc/snippets/
Matrix_resize_int_int.cpp 3 cout << "here's the 2x3 matrix m:" << endl << m << endl; variable
4 cout << "let's resize m to 3x2. This is a conservative resizing because 2*3==3*2." << endl; variable
6 cout << "here's the 3x2 matrix m:" << endl << m << endl; variable
7 cout << "now let's resize m to size 2x2. This is NOT a conservative resizing, so it becomes uninitialized:" << endl; variable
9 cout << m << endl; variable
class_FullPivLU.cpp 4 cout << "Here is the matrix m:" << endl << m << endl; variable
7 << endl << lu.matrixLU() << endl;
8 cout << "Here is the L part:" << endl; variable
11 cout << l << endl; variable
12 cout << "Here is the U part:" << endl; variable
14 cout << u << endl; variable
15 cout << "Let us now reconstruct the original matrix m:" << endl; variable
16 cout << lu.permutationP().inverse() * l * u * lu.permutationQ().inverse() << endl;
    [all...]
FullPivLU_image.cpp 5 cout << "Here is the matrix m:" << endl << m << endl; variable
7 << "columns are linearly dependent." << endl; variable
9 << endl << m.fullPivLu().image(m) << endl;
AngleAxis_mimic_euler.cpp 5 cout << m << endl << "is unitary: " << m.isUnitary() << endl;
ComplexEigenSolver_eigenvalues.cpp 4 << endl << ces.eigenvalues() << endl;
ComplexEigenSolver_eigenvectors.cpp 4 << endl << ces.eigenvectors().col(1) << endl;
EigenSolver_eigenvalues.cpp 4 << endl << es.eigenvalues() << endl;
EigenSolver_eigenvectors.cpp 4 << endl << es.eigenvectors().col(1) << endl;
MatrixBase_eigenvalues.cpp 3 cout << "The eigenvalues of the 3x3 matrix of ones are:" << endl << eivals << endl; variable
SelfAdjointEigenSolver_eigenvalues.cpp 4 << endl << es.eigenvalues() << endl;
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_mult2.cpp 6 cout << matB << endl << endl; variable
Tutorial_solve_matrix_inverse.cpp 6 cout << "The solution is:" << endl << x << endl; variable
Tutorial_solve_triangular_inplace.cpp 6 cout << "The solution is:" << endl << b << 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
  /external/zlib/src/contrib/iostream2/
zstream_test.cpp 17 cout << x << endl << y << endl << z << endl;
20 out << setw(50) << setfill('#') << setprecision(20) << x << endl << y << endl << z << endl;
21 out << z << endl << y << endl << x << endl;
22 out << 1.1234567890123456789 << endl;
    [all...]
  /external/eigen/doc/examples/
Tutorial_ArrayClass_addition.cpp 19 cout << "a + b = " << endl << a + b << endl << endl; local
22 cout << "a - 2 = " << endl << a - 2 << endl;
Tutorial_ReductionsVisitorsBroadcasting_reductions_norm.cpp 18 cout << "v.squaredNorm() = " << v.squaredNorm() << endl;
19 cout << "v.norm() = " << v.norm() << endl;
20 cout << "v.lpNorm<1>() = " << v.lpNorm<1>() << endl;
21 cout << "v.lpNorm<Infinity>() = " << v.lpNorm<Infinity>() << endl;
23 cout << endl; local
24 cout << "m.squaredNorm() = " << m.squaredNorm() << endl;
25 cout << "m.norm() = " << m.norm() << endl;
26 cout << "m.lpNorm<1>() = " << m.lpNorm<1>() << endl;
27 cout << "m.lpNorm<Infinity>() = " << m.lpNorm<Infinity>() << endl;
TemplateKeyword_simple.cpp 15 std::cout << "m2 before copy:" << std::endl; member in class:std
16 std::cout << m2 << std::endl << std::endl; member in class:std
18 std::cout << "m2 after copy:" << std::endl; member in class:std
19 std::cout << m2 << std::endl << std::endl; member in class:std
tut_arithmetic_redux_basic.cpp 10 cout << "Here is mat.sum(): " << mat.sum() << endl;
11 cout << "Here is mat.prod(): " << mat.prod() << endl;
12 cout << "Here is mat.mean(): " << mat.mean() << endl;
13 cout << "Here is mat.minCoeff(): " << mat.minCoeff() << endl;
14 cout << "Here is mat.maxCoeff(): " << mat.maxCoeff() << endl;
15 cout << "Here is mat.trace(): " << mat.trace() << endl;
Tutorial_ArrayClass_mult.cpp 15 cout << "a * b = " << endl << a * b << endl; local
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 243 milliseconds

1 2 3 4 5 6 78 91011>>