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
1131
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/eigen/doc/snippets/
Cwise_tan.cpp
2
cout << v.tan() <<
endl
;
Cwise_times_equal.cpp
3
cout << v <<
endl
;
variable
DenseBase_setLinSpaced.cpp
3
cout << v <<
endl
;
variable
Jacobi_makeGivens.cpp
4
cout << "Here is the vector v:" <<
endl
<< v <<
endl
;
variable
6
cout << "Here is the vector J' * v:" <<
endl
<< v <<
endl
variable
Jacobi_makeJacobi.cpp
5
cout << "Here is the matrix m:" <<
endl
<< m <<
endl
;
variable
8
cout << "Here is the matrix J' * m * J:" <<
endl
<< m <<
endl
variable
MatrixBase_cwiseInverse.cpp
4
cout << m.cwiseInverse() <<
endl
;
MatrixBase_cwiseMax.cpp
2
cout << v.cwiseMax(w) <<
endl
;
MatrixBase_cwiseMin.cpp
2
cout << v.cwiseMin(w) <<
endl
;
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
;
/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
Completed in 73 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>