OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cout
(Results
76 - 100
of
687
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/eigen/doc/snippets/
MatrixBase_adjoint.cpp
2
cout
<< "Here is the 2x2 complex matrix m:" << endl << m << endl;
3
cout
<< "Here is the adjoint of m:" << endl << m.adjoint() << endl;
MatrixBase_cwiseAbs.cpp
4
cout
<< m.cwiseAbs() << endl;
MatrixBase_cwiseAbs2.cpp
4
cout
<< m.cwiseAbs2() << endl;
MatrixBase_cwiseInverse.cpp
4
cout
<< m.cwiseInverse() << endl;
MatrixBase_cwiseSqrt.cpp
2
cout
<< v.cwiseSqrt() << endl;
MatrixBase_diagonal.cpp
2
cout
<< "Here is the matrix m:" << endl << m << endl;
3
cout
<< "Here are the coefficients on the main diagonal of m:" << endl
MatrixBase_inverse.cpp
2
cout
<< "Here is the matrix m:" << endl << m << endl;
3
cout
<< "Its inverse is:" << endl << m.inverse() << endl;
MatrixBase_prod.cpp
2
cout
<< "Here is the matrix m:" << endl << m << endl;
3
cout
<< "Here is the product of all the coefficients:" << endl << m.prod() << endl;
PartialRedux_maxCoeff.cpp
2
cout
<< "Here is the matrix m:" << endl << m << endl;
3
cout
<< "Here is the maximum of each column:" << endl << m.colwise().maxCoeff() << endl;
PartialRedux_minCoeff.cpp
2
cout
<< "Here is the matrix m:" << endl << m << endl;
3
cout
<< "Here is the minimum of each column:" << endl << m.colwise().minCoeff() << endl;
PartialRedux_norm.cpp
2
cout
<< "Here is the matrix m:" << endl << m << endl;
3
cout
<< "Here is the norm of each column:" << endl << m.colwise().norm() << endl;
PartialRedux_prod.cpp
2
cout
<< "Here is the matrix m:" << endl << m << endl;
3
cout
<< "Here is the product of each row:" << endl << m.rowwise().prod() << endl;
PartialRedux_squaredNorm.cpp
2
cout
<< "Here is the matrix m:" << endl << m << endl;
3
cout
<< "Here is the square norm of each row:" << endl << m.rowwise().squaredNorm() << endl;
PartialRedux_sum.cpp
2
cout
<< "Here is the matrix m:" << endl << m << endl;
3
cout
<< "Here is the sum of each row:" << endl << m.rowwise().sum() << endl;
TopicAliasing_block.cpp
3
cout
<< "Here is the matrix mat:\n" << mat << endl;
7
cout
<< "After the assignment, mat = \n" << mat << endl;
TopicAliasing_block_correct.cpp
3
cout
<< "Here is the matrix mat:\n" << mat << endl;
7
cout
<< "After the assignment, mat = \n" << mat << endl;
tut_arithmetic_transpose_aliasing.cpp
2
cout
<< "Here is the matrix a:\n" << a << endl;
5
cout
<< "and the result of the aliasing effect:\n" << a << endl
tut_arithmetic_transpose_inplace.cpp
2
cout
<< "Here is the initial matrix a:\n" << a << endl;
6
cout
<< "and after being transposed:\n" << a << endl
HouseholderSequence_HouseholderSequence.cpp
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
[
all
...]
/ndk/sources/cxx-stl/llvm-libc++/test/
test_1.cc
39
std::
cout
.imbue(std::locale("C"));
40
std::
cout
<< "Hello World" << std::endl;
/ndk/tests/build/c++-stl-source-extensions/jni/
main.CPP
4
std::
cout
<< "Hello World!" << std::endl;
/external/eigen/bench/spbench/
spbenchsolver.cpp
5
cout
<< " \nbenchsolver : performs a benchmark of all the solvers available in Eigen \n\n";
6
cout
<< " MATRIX FOLDER : \n";
7
cout
<< " The matrices for the benchmark should be collected in a folder specified with an environment variable EIGEN_MATRIXDIR \n";
8
cout
<< " This folder should contain the subfolders real/ and complex/ : \n";
9
cout
<< " The matrices are stored using the matrix market coordinate format \n";
10
cout
<< " The matrix and associated right-hand side (rhs) files are named respectively \n";
11
cout
<< " as MatrixName.mtx and MatrixName_b.mtx. If the rhs does not exist, a random one is generated. \n";
12
cout
<< " If a matrix is SPD, the matrix should be named as MatrixName_SPD.mtx \n";
13
cout
<< " If a true solution exists, it should be named as MatrixName_x.mtx; \n" ;
14
cout
<< " it will be used to compute the norm of the error relative to the computed solutions\n\n"
[
all
...]
/external/chromium_org/tools/gyp/test/library_dirs/subdir/
hello.cc
9
std::
cout
<< "Hello " << my_foo(99) << std::endl;
/external/chromium_org/tools/gyp/test/mac/libraries/subdir/
hello.cc
8
std::
cout
<< "Hello, world!" << std::endl;
/external/eigen/doc/examples/
TutorialLinAlgRankRevealing.cpp
13
cout
<< "Here is the matrix A:\n" << A << endl;
15
cout
<< "The rank of A is " << lu_decomp.rank() << endl;
16
cout
<< "Here is a matrix whose columns form a basis of the null-space of A:\n"
18
cout
<< "Here is a matrix whose columns form a basis of the column-space of A:\n"
Completed in 496 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>