HomeSort by relevance Sort by last modified time
    Searched refs:cout (Results 176 - 200 of 760) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/eigen/doc/snippets/
Cwise_boolean_and.cpp 2 cout << ((v<w) && (v<0)) << endl;
Cwise_boolean_or.cpp 2 cout << ((v<w) || (v<0)) << endl;
Cwise_cos.cpp 2 cout << v.cos() << endl;
Cwise_max.cpp 2 cout << v.max(w) << endl;
Cwise_min.cpp 2 cout << v.min(w) << endl;
Cwise_sin.cpp 2 cout << v.sin() << endl;
Cwise_tan.cpp 2 cout << v.tan() << endl;
MatrixBase_applyOnTheLeft.cpp 5 cout << "At start, A = " << endl << A << endl;
7 cout << "After applyOnTheLeft, A = " << endl << A << 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_diagonal_int.cpp 2 cout << "Here is the matrix m:" << endl << m << endl;
3 cout << "Here are the coefficients on the 1st super-diagonal and 2nd sub-diagonal of m:" << endl
MatrixBase_diagonal_template_int.cpp 2 cout << "Here is the matrix m:" << endl << m << endl;
3 cout << "Here are the coefficients on the 1st super-diagonal and 2nd sub-diagonal of m:" << endl
Matrix_resize_int.cpp 5 cout << "v: " << v.rows() << " rows, " << v.cols() << " cols" << endl;
6 cout << "w: " << w.rows() << " rows, " << w.cols() << " cols" << endl;
PartialRedux_count.cpp 2 cout << "Here is the matrix m:" << endl << m << endl;
3 cout << "Here is the count of elements larger or equal than 0.5 of each row:" << endl << (m.array() >= 0.5).rowwise().count() << endl;
TopicAliasing_mult2.cpp 6 cout << matB << endl << endl;
10 cout << matB;
Tutorial_AdvancedInitialization_CommaTemporary.cpp 2 std::cout << mat << std::endl << std::endl;
4 std::cout << mat << std::endl;
class_FullPivLU.cpp 4 cout << "Here is the matrix m:" << endl << m << endl;
6 cout << "Here is, up to permutations, its LU decomposition matrix:"
8 cout << "Here is the L part:" << endl;
11 cout << l << endl;
12 cout << "Here is the U part:" << endl;
14 cout << u << endl;
15 cout << "Let us now reconstruct the original matrix m:" << endl;
16 cout << lu.permutationP().inverse() * l * u * lu.permutationQ().inverse() << endl;
DenseBase_setLinSpaced.cpp 3 cout << v << endl;
EigenSolver_pseudoEigenvectors.cpp 2 cout << "Here is a random 6x6 matrix, A:" << endl << A << endl << endl;
7 cout << "The pseudo-eigenvalue matrix D is:" << endl << D << endl;
8 cout << "The pseudo-eigenvector matrix V is:" << endl << V << endl;
9 cout << "Finally, V * D * V^(-1) = " << endl << V * D * V.inverse() << endl;
HessenbergDecomposition_matrixH.cpp 2 cout << "Here is a random 4x4 matrix:" << endl << A << endl;
5 cout << "The Hessenberg matrix H is:" << endl << H << endl;
7 cout << "The orthogonal matrix Q is:" << endl << Q << endl;
8 cout << "Q H Q^T is:" << endl << Q * H * Q.transpose() << endl;
HessenbergDecomposition_packedMatrix.cpp 2 cout << "Here is a random 4x4 matrix:" << endl << A << endl;
5 cout << "The packed matrix M is:" << endl << pm << endl;
6 cout << "The upper Hessenberg part corresponds to the matrix H, which is:"
9 cout << "The vector of Householder coefficients is:" << endl << hc << endl;
  /external/eigen/doc/examples/
Tutorial_ArrayClass_cwise_other.cpp 11 cout << "a =" << endl
13 cout << "a.abs() =" << endl
15 cout << "a.abs().sqrt() =" << endl
17 cout << "a.min(a.abs().sqrt()) =" << endl
Tutorial_ReductionsVisitorsBroadcasting_maxnorm.cpp 15 std::cout << "Maximum sum at position " << maxIndex << std::endl;
17 std::cout << "The corresponding vector is: " << std::endl;
18 std::cout << mat.col( maxIndex ) << std::endl;
19 std::cout << "And its sum is is: " << maxNorm << std::endl;
tut_matrix_resize.cpp 10 std::cout << "The matrix m is of size "
12 std::cout << "It has " << m.size() << " coefficients" << std::endl;
15 std::cout << "The vector v is of size " << v.size() << std::endl;
16 std::cout << "As a matrix, v is of size "

Completed in 236 milliseconds

1 2 3 4 5 6 78 91011>>