OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:endl
(Results
151 - 175
of
829
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/eigen/doc/snippets/
MatrixBase_cwiseQuotient.cpp
2
cout << v.cwiseQuotient(w) <<
endl
;
MatrixBase_isDiagonal.cpp
3
cout << "Here's the matrix m:" <<
endl
<< m <<
endl
;
variable
4
cout << "m.isDiagonal() returns: " << m.isDiagonal() <<
endl
;
5
cout << "m.isDiagonal(1e-3) returns: " << m.isDiagonal(1e-3) <<
endl
;
MatrixBase_isIdentity.cpp
3
cout << "Here's the matrix m:" <<
endl
<< m <<
endl
;
variable
4
cout << "m.isIdentity() returns: " << m.isIdentity() <<
endl
;
5
cout << "m.isIdentity(1e-3) returns: " << m.isIdentity(1e-3) <<
endl
;
MatrixBase_isOnes.cpp
3
cout << "Here's the matrix m:" <<
endl
<< m <<
endl
;
variable
4
cout << "m.isOnes() returns: " << m.isOnes() <<
endl
;
5
cout << "m.isOnes(1e-3) returns: " << m.isOnes(1e-3) <<
endl
;
MatrixBase_isUnitary.cpp
3
cout << "Here's the matrix m:" <<
endl
<< m <<
endl
;
variable
4
cout << "m.isUnitary() returns: " << m.isUnitary() <<
endl
;
5
cout << "m.isUnitary(1e-3) returns: " << m.isUnitary(1e-3) <<
endl
;
MatrixBase_isZero.cpp
3
cout << "Here's the matrix m:" <<
endl
<< m <<
endl
;
variable
4
cout << "m.isZero() returns: " << m.isZero() <<
endl
;
5
cout << "m.isZero(1e-3) returns: " << m.isZero(1e-3) <<
endl
;
MatrixBase_setOnes.cpp
3
cout << m <<
endl
;
variable
MatrixBase_setRandom.cpp
3
cout << m <<
endl
;
variable
MatrixBase_setZero.cpp
3
cout << m <<
endl
;
variable
Matrix_setConstant_int_int.cpp
3
cout << m <<
endl
;
variable
PartialRedux_count.cpp
2
cout << "Here is the matrix m:" <<
endl
<< m <<
endl
;
variable
3
cout << "Here is the count of elements larger or equal than 0.5 of each row:" <<
endl
<< (m.array() >= 0.5).rowwise().count() <<
endl
;
RealSchur_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
;
Tridiagonalization_householderCoefficients.cpp
3
cout << "Here is a random symmetric 4x4 matrix:" <<
endl
<< A <<
endl
;
variable
6
cout << "The vector of Householder coefficients is:" <<
endl
<< hc <<
endl
;
variable
tut_arithmetic_transpose_conjugate.cpp
2
cout << "Here is the matrix a\n" << a <<
endl
;
variable
4
cout << "Here is the matrix a^T\n" << a.transpose() <<
endl
;
7
cout << "Here is the conjugate of a\n" << a.conjugate() <<
endl
;
10
cout << "Here is the matrix a^*\n" << a.adjoint() <<
endl
;
FullPivLU_solve.cpp
3
cout << "Here is the matrix m:" <<
endl
<< m <<
endl
;
variable
4
cout << "Here is the matrix y:" <<
endl
<< y <<
endl
;
variable
8
cout << "Here is a solution x to the equation mx=y:" <<
endl
<< x <<
endl
;
variable
11
cout << "The equation mx=y does not have any solution." <<
endl
;
variable
LLT_example.cpp
3
cout << "The matrix A is" <<
endl
<< A <<
endl
;
variable
9
cout << "The Cholesky factor L is" <<
endl
<< L <<
endl
;
variable
10
cout << "To check this, let us compute L * L.transpose()" <<
endl
;
variable
11
cout << L * L.transpose() <<
endl
;
12
cout << "This should equal the matrix A" <<
endl
;
variable
/ndk/tests/build/c++-stl-source-extensions/jni/
main.C
4
std::cout << "Hello World!" << std::
endl
;
member in class:std
main.CPP
4
std::cout << "Hello World!" << std::
endl
;
main.c++
4
std::cout << "Hello World!" << std::
endl
;
member in class:std
main.cc
4
std::cout << "Hello World!" << std::
endl
;
member in class:std
main.cp
4
std::cout << "Hello World!" << std::
endl
;
member in class:std
main.cpp
4
std::cout << "Hello World!" << std::
endl
;
member in class:std
main.cxx
4
std::cout << "Hello World!" << std::
endl
;
member in class:std
/system/extras/tests/bionic/libc/common/
hello_world.cpp
6
cout << "Hello World" <<
endl
;
local
/external/eigen/doc/examples/
Tutorial_ReductionsVisitorsBroadcasting_reductions_bool.cpp
14
cout << "(a > 0).all() = " << (a > 0).all() <<
endl
;
15
cout << "(a > 0).any() = " << (a > 0).any() <<
endl
;
16
cout << "(a > 0).count() = " << (a > 0).count() <<
endl
;
17
cout <<
endl
;
local
18
cout << "(a > 2).all() = " << (a > 2).all() <<
endl
;
19
cout << "(a > 2).any() = " << (a > 2).any() <<
endl
;
20
cout << "(a > 2).count() = " << (a > 2).count() <<
endl
;
Completed in 903 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>