HomeSort by relevance Sort by last modified time
    Searched refs:transpose (Results 1 - 25 of 430) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/eigen/doc/snippets/
DenseBase_LinSpaced.cpp 1 cout << VectorXi::LinSpaced(4,7,10).transpose() << endl;
2 cout << VectorXd::LinSpaced(5,0.0,1.0).transpose() << endl;
DenseBase_LinSpaced_seq.cpp 1 cout << VectorXi::LinSpaced(Sequential,4,7,10).transpose() << endl;
2 cout << VectorXd::LinSpaced(Sequential,5,0.0,1.0).transpose() << endl;
MatrixBase_diagonal_int.cpp 4 << m.diagonal(1).transpose() << endl
5 << m.diagonal(-2).transpose() << endl;
MatrixBase_diagonal_template_int.cpp 4 << m.diagonal<1>().transpose() << endl
5 << m.diagonal<-2>().transpose() << endl;
DenseBase_setLinSpaced.cpp 2 v.setLinSpaced(5,0.5f,1.5f).transpose();
MatrixBase_transpose.cpp 3 cout << "Here is the transpose of m:" << endl << m.transpose() << endl;
4 cout << "Here is the coefficient (1,0) in the transpose of m:" << endl
5 << m.transpose()(1,0) << endl;
7 m.transpose()(1,0) = 0;
SelfAdjointEigenSolver_SelfAdjointEigenSolver.cpp 3 Matrix4f A = X + X.transpose();
5 cout << "The eigenvalues of A are: " << es.eigenvalues().transpose() << endl;
7 cout << "The eigenvalues of A+I are: " << es.eigenvalues().transpose() << endl;
SelfAdjointEigenSolver_compute_MatrixType.cpp 3 MatrixXf A = X + X.transpose();
5 cout << "The eigenvalues of A are: " << es.eigenvalues().transpose() << endl;
7 cout << "The eigenvalues of A+I are: " << es.eigenvalues().transpose() << endl;
tut_arithmetic_transpose_aliasing.cpp 4 a = a.transpose(); // !!! do NOT do this !!!
EigenSolver_compute.cpp 4 cout << "The eigenvalues of A are: " << es.eigenvalues().transpose() << endl;
6 cout << "The eigenvalues of A+I are: " << es.eigenvalues().transpose() << endl;
tut_arithmetic_transpose_conjugate.cpp 4 cout << "Here is the matrix a^T\n" << a.transpose() << endl;
SelfAdjointEigenSolver_compute_MatrixType2.cpp 2 MatrixXd A = X * X.transpose();
4 MatrixXd B = X * X.transpose();
  /external/guava/guava-tests/test/com/google/common/collect/
TransposedTableTest.java 22 * Test cases for {@link Tables#transpose}.
32 Table<String, Integer, Character> table = Tables.transpose(original);
40 assertSame(original, Tables.transpose(Tables.transpose(original)));
45 Table<String, Integer, Character> transpose = Tables.transpose(original); local
47 assertEquals((Character) 'a', transpose.get("foo", 1));
52 Table<String, Integer, Character> transpose = Tables.transpose(original); local
53 transpose.put("foo", 1, 'a')
59 Table<String, Integer, Character> transpose = Tables.transpose(original); local
    [all...]
  /external/eigen/test/eigen2/
eigen2_bug_132.cpp 17 VectorXd y = A.transpose() * (b-c); // bug 132: infinite recursion in coeffRef
18 VectorXd z = (b-c).transpose() * A; // bug 132: infinite recursion in coeffRef
24 VectorXd z = (b-c).transpose() * A.transpose();
eigen2_sparse_product.cpp 36 VERIFY_IS_APPROX(m4=m2.transpose()*m3, refMat4=refMat2.transpose()*refMat3);
37 VERIFY_IS_APPROX(m4=m2.transpose()*m3.transpose(), refMat4=refMat2.transpose()*refMat3.transpose());
38 VERIFY_IS_APPROX(m4=m2*m3.transpose(), refMat4=refMat2*refMat3.transpose());
42 VERIFY_IS_APPROX(dm4=m2*refMat3.transpose(), refMat4=refMat2*refMat3.transpose());
    [all...]
product.h 64 // (we use Transpose.h but this doesn't count as a test for it)
66 VERIFY_IS_APPROX((m1*m1.transpose())*m2, m1*(m1.transpose()*m2));
68 m3 *= m1.transpose() * m2;
69 VERIFY_IS_APPROX(m3, m1 * (m1.transpose()*m2));
70 VERIFY_IS_APPROX(m3, m1.lazy() * (m1.transpose()*m2));
85 VERIFY_IS_APPROX(v1.transpose(), v1.transpose() * identity);
96 VERIFY(areNotApprox(m1.transpose()*m2,m2.transpose()*m1))
    [all...]
  /external/eigen/test/
nesting_ops.cpp 29 VERIFY_IS_APPROX( (m.transpose() * m).diagonal().sum(), (m.transpose() * m).diagonal().sum() );
30 VERIFY_IS_APPROX( (m.transpose() * m).diagonal().array().abs().sum(), (m.transpose() * m).diagonal().array().abs().sum() );
32 VERIFY_IS_APPROX( (m.transpose() * m).array().abs().sum(), (m.transpose() * m).array().abs().sum() );
product.h 61 // (we use Transpose.h but this doesn't count as a test for it)
62 VERIFY_IS_APPROX((m1*m1.transpose())*m2, m1*(m1.transpose()*m2));
64 m3 *= m1.transpose() * m2;
65 VERIFY_IS_APPROX(m3, m1 * (m1.transpose()*m2));
66 VERIFY_IS_APPROX(m3, m1 * (m1.transpose()*m2));
78 VERIFY_IS_APPROX(v1.transpose(), v1.transpose() * identity);
89 VERIFY(areNotApprox(m1.transpose()*m2,m2.transpose()*m1))
    [all...]
sparse_product.cpp 18 VERIFY_IS_APPROX(m4=m2.col(c)*refMat2.col(c1).transpose(), refMat4=refMat2.col(c)*refMat2.col(c1).transpose());
19 VERIFY_IS_APPROX(m4=refMat2.col(c1)*m2.col(c).transpose(), refMat4=refMat2.col(c1)*refMat2.col(c).transpose());
27 VERIFY_IS_APPROX(m4=m2.row(r).transpose()*refMat2.col(c1).transpose(), refMat4=refMat2.row(r).transpose()*refMat2.col(c1).transpose());
33 // VERIFY_IS_APPROX(m4=m2.innerVector(c)*dv1.transpose(), refMat4=refMat2.colVector(c)*dv1.transpose());
    [all...]
product_small.cpp 21 matAstatic.cwiseProduct(matBstatic.transpose()).sum() );
28 matAdynamic.cwiseProduct(matBdynamic.transpose()).sum() );
47 VERIFY_IS_APPROX( (v * v.transpose()) * v, (v * v.transpose()).eval() * v);
  /external/ceres-solver/internal/ceres/
blas.cc 51 bool transpose,
59 char trans = transpose ? 'T' : 'N';
60 int n = transpose ? num_cols : num_rows;
61 int k = transpose ? num_rows : num_cols;
blas.h 41 // transpose = true : c = alpha * a'a + beta * c;
42 // transpose = false : c = alpha * aa' + beta * c;
48 bool transpose,
  /external/eigen/failtest/
const_qualified_transpose_method_retval.cpp 12 Transpose<Matrix3d> b(m.transpose());
  /external/eigen/doc/examples/
tut_arithmetic_matrix_mul.cpp 13 std::cout << "Here is u^T*mat:\n" << u.transpose()*mat << std::endl;
14 std::cout << "Here is u^T*v:\n" << u.transpose()*v << std::endl;
15 std::cout << "Here is u*v^T:\n" << u*v.transpose() << std::endl;
  /external/eigen/unsupported/doc/examples/
PolynomialSolver1.cpp 13 cout << "Roots: " << roots.transpose() << endl;
18 cout << "Complex roots: " << psolve.roots().transpose() << endl;
23 cout << "Real roots: " << mapRR.transpose() << endl;
31 cout << "Hard case polynomial defined by floats: " << hardCase_polynomial.transpose() << endl;
33 cout << "Complex roots: " << psolvef.roots().transpose() << endl;
36 cout << "Norms of the evaluations of the polynomial at the roots: " << evals.transpose() << endl << endl;
41 cout << "Complex roots: " << psolve6d.roots().transpose() << endl;
47 cout << "Norms of the evaluations of the polynomial at the roots: " << evals.transpose() << endl << endl;

Completed in 557 milliseconds

1 2 3 4 5 6 7 8 91011>>