OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:cout
(Results
51 - 75
of
770
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/eigen/doc/snippets/
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;
Cwise_not_equal.cpp
2
cout
<< (v!=w) << endl;
Cwise_plus_equal.cpp
3
cout
<< v << endl;
Cwise_pow.cpp
2
cout
<< v.pow(0.333333) << endl;
Cwise_quotient.cpp
2
cout
<< v/w << endl;
Cwise_sin.cpp
2
cout
<< v.sin() << endl;
Cwise_slash_equal.cpp
3
cout
<< v << endl;
Cwise_tan.cpp
2
cout
<< v.tan() << endl;
Cwise_times_equal.cpp
3
cout
<< v << endl;
DenseBase_setLinSpaced.cpp
3
cout
<< v << endl;
MatrixBase_bottomLeftCorner_int_int.cpp
2
cout
<< "Here is the matrix m:" << endl << m << endl;
3
cout
<< "Here is m.bottomLeftCorner(2, 2):" << endl;
4
cout
<< m.bottomLeftCorner(2, 2) << endl;
6
cout
<< "Now the matrix m is:" << endl << m << endl;
MatrixBase_bottomRightCorner_int_int.cpp
2
cout
<< "Here is the matrix m:" << endl << m << endl;
3
cout
<< "Here is m.bottomRightCorner(2, 2):" << endl;
4
cout
<< m.bottomRightCorner(2, 2) << endl;
6
cout
<< "Now the matrix m is:" << endl << m << endl;
MatrixBase_bottomRows_int.cpp
2
cout
<< "Here is the array a:" << endl << a << endl;
3
cout
<< "Here is a.bottomRows(2):" << endl;
4
cout
<< a.bottomRows(2) << endl;
6
cout
<< "Now the array a is:" << endl << a << endl;
MatrixBase_computeInverseAndDetWithCheck.cpp
2
cout
<< "Here is the matrix m:" << endl << m << endl;
7
cout
<< "Its determinant is " << determinant << endl;
9
cout
<< "It is invertible, and its inverse is:" << endl << inverse << endl;
12
cout
<< "It is not invertible." << endl;
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_leftCols_int.cpp
2
cout
<< "Here is the array a:" << endl << a << endl;
3
cout
<< "Here is a.leftCols(2):" << endl;
4
cout
<< a.leftCols(2) << endl;
6
cout
<< "Now the array a is:" << endl << a << endl;
MatrixBase_rightCols_int.cpp
2
cout
<< "Here is the array a:" << endl << a << endl;
3
cout
<< "Here is a.rightCols(2):" << endl;
4
cout
<< a.rightCols(2) << endl;
6
cout
<< "Now the array a is:" << endl << a << endl;
MatrixBase_setOnes.cpp
3
cout
<< m << endl;
MatrixBase_setRandom.cpp
3
cout
<< m << endl;
MatrixBase_setZero.cpp
3
cout
<< m << endl;
Completed in 33 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>