Searched refs:cout (Results 101 - 125 of 596) sorted by relevance

1234567891011>>

/external/eigen/doc/examples/
H A Dtut_arithmetic_scalar_mul_div.cpp12 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;
16 std::cout << "Now v =\n" << v << std::endl;
/external/eigen/doc/snippets/
H A DCwise_minus_equal.cpp3 cout << v << endl;
H A DCwise_plus_equal.cpp3 cout << v << endl;
H A DCwise_quotient.cpp2 cout << v/w << endl;
H A DCwise_slash_equal.cpp3 cout << v << endl;
H A DCwise_times_equal.cpp3 cout << v << endl;
H A DDenseBase_LinSpaced_seq.cpp0 cout << VectorXi::LinSpaced(Sequential,4,7,10).transpose() << endl;
2 cout << VectorXd::LinSpaced(Sequential,5,0.0,1.0).transpose() << endl;
H A DFullPivLU_solve.cpp3 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;
H A DMatrixBase_bottomLeftCorner_int_int.cpp2 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;
H A DMatrixBase_bottomRightCorner_int_int.cpp2 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;
H A DMatrixBase_bottomRows_int.cpp2 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;
H A DMatrixBase_computeInverseAndDetWithCheck.cpp2 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;
H A DMatrixBase_isOrthogonal.cpp3 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;
H A DMatrixBase_leftCols_int.cpp2 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;
H A DMatrixBase_operatorNorm.cpp2 cout << "The operator norm of the 3x3 matrix of ones is "
H A DMatrixBase_rightCols_int.cpp2 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;
H A DMatrixBase_template_int_bottomRows.cpp2 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;
H A DMatrixBase_template_int_int_bottomLeftCorner.cpp2 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;
H A DMatrixBase_template_int_int_bottomLeftCorner_int_int.cpp2 cout << "Here is the matrix m:" << endl << m << endl;
3 cout << "Here is m.bottomLeftCorner<2,Dynamic>(2,2):" << endl;
4 cout << m.bottomLeftCorner<2,Dynamic>(2,2) << endl;
6 cout << "Now the matrix m is:" << endl << m << endl;
H A DMatrixBase_template_int_int_bottomRightCorner.cpp2 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;
H A DMatrixBase_template_int_int_bottomRightCorner_int_int.cpp2 cout << "Here is the matrix m:" << endl << m << endl;
3 cout << "Here is m.bottomRightCorner<2,Dynamic>(2,2):" << endl;
4 cout << m.bottomRightCorner<2,Dynamic>(2,2) << endl;
6 cout << "Now the matrix m is:" << endl << m << endl;
H A DMatrixBase_template_int_int_topLeftCorner.cpp2 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;
H A DMatrixBase_template_int_int_topLeftCorner_int_int.cpp2 cout << "Here is the matrix m:" << endl << m << endl;
3 cout << "Here is m.topLeftCorner<2,Dynamic>(2,2):" << endl;
4 cout << m.topLeftCorner<2,Dynamic>(2,2) << endl;
6 cout << "Now the matrix m is:" << endl << m << endl;
H A DMatrixBase_template_int_int_topRightCorner.cpp2 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;
H A DMatrixBase_template_int_int_topRightCorner_int_int.cpp2 cout << "Here is the matrix m:" << endl << m << endl;
3 cout << "Here is m.topRightCorner<2,Dynamic>(2,2):" << endl;
4 cout << m.topRightCorner<2,Dynamic>(2,2) << endl;
6 cout << "Now the matrix m is:" << endl << m << endl;

Completed in 2816 milliseconds

1234567891011>>