OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:endl
(Results
151 - 175
of
606
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/eigen/doc/snippets/
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_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_block.cpp
3
cout << "Here is the matrix mat:\n" << mat <<
endl
;
variable
7
cout << "After the assignment, mat = \n" << mat <<
endl
;
variable
TopicAliasing_block_correct.cpp
3
cout << "Here is the matrix mat:\n" << mat <<
endl
;
variable
7
cout << "After the assignment, mat = \n" << mat <<
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
HouseholderSequence_HouseholderSequence.cpp
2
cout << "The matrix v is:" <<
endl
;
variable
3
cout << v <<
endl
;
variable
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
;
variable
17
cout << H0 <<
endl
;
variable
19
cout << "The second Householder reflection is represented by H_1 = " <<
endl
;
variable
20
cout << H1 <<
endl
;
variable
22
cout << "The third Householder reflection is represented by H_2 = " <<
endl
;
variable
23
cout << H2 <<
endl
;
variable
24
cout << "Their product is H_0 H_1 H_2 = " <<
endl
;
variable
25
cout << H0 * H1 * H2 <<
endl
;
variable
29
cout << "If we construct a HouseholderSequence from v and h" <<
endl
;
variable
30
cout << "and convert it to a matrix, we get:" <<
endl
;
variable
31
cout << hhSeqAsMatrix <<
endl
;
variable
[
all
...]
ComplexSchur_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
;
Cwise_minus_equal.cpp
3
cout << v <<
endl
;
variable
Cwise_plus_equal.cpp
3
cout << v <<
endl
;
variable
Cwise_quotient.cpp
2
cout << v/w <<
endl
;
variable
Cwise_slash_equal.cpp
3
cout << v <<
endl
;
variable
Cwise_times_equal.cpp
3
cout << v <<
endl
;
variable
/external/chromium_org/tools/gyp/test/library_dirs/subdir/
hello.cc
9
std::cout << "Hello " << my_foo(99) << std::
endl
;
member in class:std
/external/chromium_org/tools/gyp/test/mac/libraries/subdir/
hello.cc
8
std::cout << "Hello, world!" << std::
endl
;
member in class:std
/external/eigen/doc/examples/
QuickStart_example2_dynamic.cpp
11
cout << "m =" <<
endl
<< m <<
endl
;
local
14
cout << "m * v =" <<
endl
<< m * v <<
endl
;
local
QuickStart_example2_fixed.cpp
11
cout << "m =" <<
endl
<< m <<
endl
;
local
14
cout << "m * v =" <<
endl
<< m * v <<
endl
;
local
TutorialLinAlgRankRevealing.cpp
13
cout << "Here is the matrix A:\n" << A <<
endl
;
local
15
cout << "The rank of A is " << lu_decomp.rank() <<
endl
;
17
<< lu_decomp.kernel() <<
endl
;
19
<< lu_decomp.image(A) <<
endl
; // yes, have to pass the original A
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 1051 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>