OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:endl
(Results
126 - 150
of
1131
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/eigen/doc/snippets/
MatrixBase_extract.cpp
6
cout << "Here is the matrix m:" <<
endl
<< m <<
endl
;
7
cout << "Here is the upper-triangular matrix extracted from m:" <<
endl
8
<< m.part<Eigen::UpperTriangular>() <<
endl
;
9
cout << "Here is the strictly-upper-triangular matrix extracted from m:" <<
endl
10
<< m.part<Eigen::StrictlyUpperTriangular>() <<
endl
;
11
cout << "Here is the unit-lower-triangular matrix extracted from m:" <<
endl
12
<< m.part<Eigen::UnitLowerTriangular>() <<
endl
;
TopicStorageOrders_example.cpp
5
cout << "The matrix A:" <<
endl
;
variable
6
cout << Acolmajor <<
endl
<<
endl
;
variable
8
cout << "In memory (column-major):" <<
endl
;
variable
11
cout <<
endl
<<
endl
;
variable
14
cout << "In memory (row-major):" <<
endl
;
variable
17
cout <<
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_abs.cpp
2
cout << v.abs() <<
endl
;
Cwise_abs2.cpp
2
cout << v.abs2() <<
endl
;
Cwise_acos.cpp
2
cout << v.acos() <<
endl
;
Cwise_asin.cpp
2
cout << v.asin() <<
endl
;
Cwise_cos.cpp
2
cout << v.cos() <<
endl
;
Cwise_equal_equal.cpp
2
cout << (v==w) <<
endl
;
Cwise_greater.cpp
2
cout << (v>w) <<
endl
;
Cwise_greater_equal.cpp
2
cout << (v>=w) <<
endl
;
Cwise_less.cpp
2
cout << (v<w) <<
endl
;
Cwise_less_equal.cpp
2
cout << (v<=w) <<
endl
;
Cwise_max.cpp
2
cout << v.max(w) <<
endl
;
Cwise_min.cpp
2
cout << v.min(w) <<
endl
;
Cwise_minus_equal.cpp
3
cout << v <<
endl
;
variable
Cwise_not_equal.cpp
2
cout << (v!=w) <<
endl
;
Cwise_plus_equal.cpp
3
cout << v <<
endl
;
variable
Cwise_pow.cpp
2
cout << v.pow(0.333333) <<
endl
;
Cwise_quotient.cpp
2
cout << v/w <<
endl
;
variable
Cwise_sin.cpp
2
cout << v.sin() <<
endl
;
Cwise_slash_equal.cpp
3
cout << v <<
endl
;
variable
/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
Completed in 218 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>