OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:endl
(Results
201 - 225
of
1422
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/eigen/doc/snippets/
SparseMatrix_coeffs.cpp
6
cout << "The matrix A is:" <<
endl
<< MatrixXd(A) <<
endl
;
7
cout << "it has " << A.nonZeros() << " stored non zero coefficients that are: " << A.coeffs().transpose() <<
endl
;
9
cout << "After adding 10 to every stored non zero coefficient, the matrix A is:" <<
endl
<< MatrixXd(A) <<
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(0) <<
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_ReshapeMat2Mat.cpp
6
cout << "M2:" <<
endl
<< M2 <<
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
Cwise_boolean_and.cpp
2
cout << ((v<w) && (v<0)) <<
endl
;
/external/eigen/doc/examples/
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
function_taking_ref.cpp
15
cout << "matrix m:" <<
endl
<< m <<
endl
<<
endl
;
local
16
cout << "inv_cond(m): " << inv_cond(m) <<
endl
;
17
cout << "inv_cond(m(1:3,1:3)): " << inv_cond(m.topLeftCorner(3,3)) <<
endl
;
18
cout << "inv_cond(m+I): " << inv_cond(m+Matrix4f::Identity()) <<
endl
;
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
/packages/apps/Test/connectivity/sl4n/rapidjson/example/simplereader/
simplereader.cpp
8
bool Null() { cout << "Null()" <<
endl
; return true; }
local
9
bool Bool(bool b) { cout << "Bool(" << boolalpha << b << ")" <<
endl
; return true; }
local
10
bool Int(int i) { cout << "Int(" << i << ")" <<
endl
; return true; }
local
11
bool Uint(unsigned u) { cout << "Uint(" << u << ")" <<
endl
; return true; }
local
12
bool Int64(int64_t i) { cout << "Int64(" << i << ")" <<
endl
; return true; }
local
13
bool Uint64(uint64_t u) { cout << "Uint64(" << u << ")" <<
endl
; return true; }
local
14
bool Double(double d) { cout << "Double(" << d << ")" <<
endl
; return true; }
local
16
cout << "String(" << str << ", " << length << ", " << boolalpha << copy << ")" <<
endl
;
local
19
bool StartObject() { cout << "StartObject()" <<
endl
; return true; }
local
21
cout << "Key(" << str << ", " << length << ", " << boolalpha << copy << ")" <<
endl
;
local
24
bool EndObject(SizeType memberCount) { cout << "EndObject(" << memberCount << ")" <<
endl
; return true; }
local
25
bool StartArray() { cout << "StartArray()" <<
endl
; return true; }
local
26
bool EndArray(SizeType elementCount) { cout << "EndArray(" << elementCount << ")" <<
endl
; return true; }
local
[
all
...]
Completed in 346 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>