Searched defs:endl (Results 151 - 175 of 438) sorted by relevance

1234567891011>>

/external/eigen/doc/snippets/
H A DFullPivLU_kernel.cpp2 cout << "Here is the matrix m:" << endl << m << endl; variable
5 << endl << ker << endl; variable
7 << endl << m*ker << endl; variable
H A DFullPivLU_solve.cpp3 cout << "Here is the matrix m:" << endl << m << endl; variable
4 cout << "Here is the matrix y:" << endl << y << endl; variable
8 cout << "Here is a solution x to the equation mx=y:" << endl << x << endl; variable
11 cout << "The equation mx=y does not have any solution." << endl; variable
H A DHessenbergDecomposition_matrixH.cpp2 cout << "Here is a random 4x4 matrix:" << endl << A << endl; variable
5 cout << "The Hessenberg matrix H is:" << endl << H << endl; variable
7 cout << "The orthogonal matrix Q is:" << endl << Q << endl; variable
8 cout << "Q H Q^T is:" << endl << Q * H * Q.transpose() << endl;
H A DHessenbergDecomposition_packedMatrix.cpp2 cout << "Here is a random 4x4 matrix:" << endl << A << endl; variable
5 cout << "The packed matrix M is:" << endl << pm << endl; variable
7 << endl << hessOfA.matrixH() << endl;
9 cout << "The vector of Householder coefficients is:" << endl << hc << endl; variable
H A DJacobi_makeGivens.cpp4 cout << "Here is the vector v:" << endl << v << endl; variable
6 cout << "Here is the vector J' * v:" << endl << v << endl variable
H A DJacobi_makeJacobi.cpp5 cout << "Here is the matrix m:" << endl << m << endl; variable
8 cout << "Here is the matrix J' * m * J:" << endl << m << endl variable
H A DMatrixBase_applyOnTheLeft.cpp5 cout << "At start, A = " << endl << A << endl; variable
7 cout << "After applyOnTheLeft, A = " << endl << A << endl; variable
H A DMatrixBase_applyOnTheRight.cpp5 cout << "At start, A = " << endl << A << endl; variable
7 cout << "After A *= B, A = " << endl << A << endl; variable
9 cout << "After applyOnTheRight, A = " << endl << A << endl; variable
H A DMatrixBase_computeInverseWithCheck.cpp2 cout << "Here is the matrix m:" << endl << m << endl; variable
7 cout << "It is invertible, and its inverse is:" << endl << inverse << endl; variable
10 cout << "It is not invertible." << endl; variable
H A DMatrixBase_cwiseProduct.cpp3 cout << "a:\n" << a << "\nb:\n" << b << "\nc:\n" << c << endl; variable
H A DMatrixBase_eigenvalues.cpp3 cout << "The eigenvalues of the 3x3 matrix of ones are:" << endl << eivals << endl; variable
H A DMatrixBase_eval.cpp4 cout << "Here is the matrix m:" << endl << m << endl; variable
5 cout << "Now we want to copy a column into a row." << endl; variable
6 cout << "If we do m.col(1) = m.row(0), then m becomes:" << endl; variable
8 cout << m << endl << "which is wrong!" << endl; variable
9 cout << "Now let us instead do m.col(1) = m.row(0).eval(). Then m becomes" << endl; variable
12 cout << m << endl << "which is right." << endl; variable
H A DMatrixBase_noalias.cpp3 cout << c << endl; variable
H A DMatrixBase_set.cpp5 cout << m1 << endl << endl; variable
8 cout << m2 << endl << endl; variable
13 cout << m2 << endl; variable
H A DPartialPivLU_solve.cpp3 cout << "Here is the invertible matrix A:" << endl << A << endl; variable
4 cout << "Here is the matrix B:" << endl << B << endl; variable
6 cout << "Here is the (unique) solution X to the equation AX=B:" << endl << X << endl; variable
7 cout << "Relative error: " << (A*X-B).norm() / B.norm() << endl;
H A DRealSchur_RealSchur_MatrixType.cpp2 cout << "Here is a random 6x6 matrix, A:" << endl << A << endl << endl; variable
5 cout << "The orthogonal matrix U is:" << endl << schur.matrixU() << endl;
6 cout << "The quasi-triangular matrix T is:" << endl << schur.matrixT() << endl << endl; variable
10 cout << "U * T * U^T = " << endl << U * T * U.transpose() << endl;
[all...]
H A DSelfAdjointEigenSolver_operatorInverseSqrt.cpp3 cout << "Here is a random positive-definite matrix, A:" << endl << A << endl << endl; variable
6 cout << "The inverse square root of A is: " << endl; variable
7 cout << es.operatorInverseSqrt() << endl;
8 cout << "We can also compute it with operatorSqrt() and inverse(). That yields: " << endl; variable
9 cout << es.operatorSqrt().inverse() << endl;
H A DSelfAdjointEigenSolver_operatorSqrt.cpp3 cout << "Here is a random positive-definite matrix, A:" << endl << A << endl << endl; variable
7 cout << "The square root of A is: " << endl << sqrtA << endl; variable
8 cout << "If we square this, we get: " << endl << sqrtA*sqrtA << endl; variable
H A DSelfAdjointView_eigenvalues.cpp3 cout << "The eigenvalues of the 3x3 matrix of ones are:" << endl << eivals << endl; variable
H A DTopicStorageOrders_example.cpp5 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
H A DTridiagonalization_compute.cpp5 cout << "The matrix T in the tridiagonal decomposition of A is: " << endl; variable
6 cout << tri.matrixT() << endl;
8 cout << "The matrix T in the tridiagonal decomposition of 2A is: " << endl; variable
9 cout << tri.matrixT() << endl;
H A DTridiagonalization_decomposeInPlace.cpp3 cout << "Here is a random symmetric 5x5 matrix:" << endl << A << endl << endl; variable
8 cout << "The orthogonal matrix Q is:" << endl << A << endl; variable
9 cout << "The diagonal of the tridiagonal matrix T is:" << endl << diag << endl; variable
10 cout << "The subdiagonal of the tridiagonal matrix T is:" << endl << subdiag << endl; variable
H A DTridiagonalization_householderCoefficients.cpp3 cout << "Here is a random symmetric 4x4 matrix:" << endl << A << endl; variable
6 cout << "The vector of Householder coefficients is:" << endl << hc << endl; variable
H A DTridiagonalization_packedMatrix.cpp3 cout << "Here is a random symmetric 4x4 matrix:" << endl << A << endl; variable
6 cout << "The packed matrix M is:" << endl << pm << endl; variable
8 << endl << triOfA.matrixT() << endl;
H A DTutorial_AdvancedInitialization_Join.cpp3 std::cout << "vec1 = " << vec1 << std::endl; member in class:std
7 std::cout << "vec2 = " << vec2 << std::endl; member in class:std
11 std::cout << "joined = " << joined << std::endl; member in class:std

Completed in 256 milliseconds

1234567891011>>