OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cout
(Results
101 - 125
of
586
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/eigen/doc/snippets/
Cwise_minus_equal.cpp
3
cout
<< v << endl;
Cwise_plus_equal.cpp
3
cout
<< v << endl;
Cwise_quotient.cpp
2
cout
<< v/w << endl;
Cwise_slash_equal.cpp
3
cout
<< v << endl;
Cwise_times_equal.cpp
3
cout
<< v << endl;
DenseBase_LinSpaced_seq.cpp
0
cout
<< VectorXi::LinSpaced(Sequential,4,7,10).transpose() << endl;
2
cout
<< VectorXd::LinSpaced(Sequential,5,0.0,1.0).transpose() << endl;
FullPivLU_solve.cpp
3
cout
<< "Here is the matrix m:" << endl << m << endl;
4
cout
<< "Here is the matrix y:" << endl << y << endl;
8
cout
<< "Here is a solution x to the equation mx=y:" << endl << x << endl;
11
cout
<< "The equation mx=y does not have any solution." << 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_isOrthogonal.cpp
3
cout
<< "Here's the vector v:" << endl << v << endl;
4
cout
<< "Here's the vector w:" << endl << w << endl;
5
cout
<< "v.isOrthogonal(w) returns: " << v.isOrthogonal(w) << endl;
6
cout
<< "v.isOrthogonal(w,1e-3) returns: " << v.isOrthogonal(w,1e-3) << 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_operatorNorm.cpp
2
cout
<< "The operator norm of the 3x3 matrix of ones is "
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_template_int_bottomRows.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_template_int_int_bottomLeftCorner.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_template_int_int_bottomRightCorner.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_template_int_int_topLeftCorner.cpp
2
cout
<< "Here is the matrix m:" << endl << m << endl;
3
cout
<< "Here is m.topLeftCorner<2,2>():" << endl;
4
cout
<< m.topLeftCorner<2,2>() << endl;
6
cout
<< "Now the matrix m is:" << endl << m << endl;
MatrixBase_template_int_int_topRightCorner.cpp
2
cout
<< "Here is the matrix m:" << endl << m << endl;
3
cout
<< "Here is m.topRightCorner<2,2>():" << endl;
4
cout
<< m.topRightCorner<2,2>() << endl;
6
cout
<< "Now the matrix m is:" << endl << m << endl;
MatrixBase_template_int_leftCols.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_template_int_rightCols.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_template_int_topRows.cpp
2
cout
<< "Here is the array a:" << endl << a << endl;
3
cout
<< "Here is a.topRows<2>():" << endl;
4
cout
<< a.topRows<2>() << endl;
6
cout
<< "Now the array a is:" << endl << a << endl;
MatrixBase_topLeftCorner_int_int.cpp
2
cout
<< "Here is the matrix m:" << endl << m << endl;
3
cout
<< "Here is m.topLeftCorner(2, 2):" << endl;
4
cout
<< m.topLeftCorner(2, 2) << endl;
6
cout
<< "Now the matrix m is:" << endl << m << endl;
MatrixBase_topRightCorner_int_int.cpp
2
cout
<< "Here is the matrix m:" << endl << m << endl;
3
cout
<< "Here is m.topRightCorner(2, 2):" << endl;
4
cout
<< m.topRightCorner(2, 2) << endl;
6
cout
<< "Now the matrix m is:" << endl << m << endl;
Completed in 1020 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>