/external/eigen/test/ |
product_large.cpp | 26 VectorXf v = VectorXf::Ones(N); 27 MatrixXf m = MatrixXf::Ones(N,3);
|
redux.cpp | 25 MatrixType m1_for_prod = MatrixType::Ones(rows, cols) + RealScalar(0.2) * m1; 28 VERIFY_IS_APPROX(MatrixType::Ones(rows, cols).sum(), Scalar(float(rows*cols))); // the float() here to shut up excessive MSVC warning about int->complex conversion being lossy 71 VectorType v_for_prod = VectorType::Ones(size) + Scalar(0.2) * v; // see comment above declaration of m1_for_prod
|
eigensolver_generic.cpp | 44 VERIFY_IS_APPROX(ei1.eigenvectors().colwise().norm(), RealVectorType::Ones(rows).transpose());
|
cwiseop.cpp | 81 mones = MatrixType::Ones(rows, cols), 85 vones = VectorType::Ones(rows), 93 // test Zero, Ones, Constant, and the set* variants
|
geo_homogeneous.cpp | 30 ones = VectorType::Ones(); local 42 hm0 << m0, ones.transpose();
|
mapped_matrix.cpp | 62 Map<MatrixType, Aligned>(array1, rows, cols) = MatrixType::Ones(rows,cols);
|
array_for_matrix.cpp | 62 VERIFY_IS_APPROX(m1.block(0,0,rows,0).rowwise().prod(), ColVectorType::Ones(rows));
|
block.cpp | 50 ones = MatrixType::Ones(rows, cols); local 128 VERIFY(numext::real(ones.col(c1).sum()) == RealScalar(rows)); 129 VERIFY(numext::real(ones.row(r1).sum()) == RealScalar(cols)); 131 VERIFY(numext::real(ones.col(c1).dot(ones.col(c2))) == RealScalar(rows)); 132 VERIFY(numext::real(ones.row(r1).dot(ones.row(r2))) == RealScalar(cols));
|
/external/eigen/bench/ |
benchmarkSlice.cpp | 31 m.block(r,c,nr,nc) += Mat::Ones(nr,nc);
|
bench_norm.cpp | 239 VectorXf vf = VectorXf::Ones(s) * yf; 240 VectorXd vd = VectorXd::Ones(s) * yd; 277 VectorXf v = VectorXf::Ones(1024) * y;
|
/external/chromium_org/ui/gfx/geometry/ |
matrix3_f.h | 18 static Matrix3F Ones();
|
matrix3_unittest.cc | 17 Matrix3F ones = Matrix3F::Ones(); local 24 EXPECT_EQ(ones, product_ones); 34 Matrix3F matrix = Matrix3F::Ones(); 50 EXPECT_EQ(0.0f, Matrix3F::Ones().Determinant());
|
matrix3_f.cc | 66 Matrix3F Matrix3F::Ones() {
|
/external/ceres-solver/internal/ceres/ |
block_random_access_dense_matrix_test.cc | 91 (i+1) * (j+1) * Matrix::Ones(blocks[i], blocks[j]);
|
/external/eigen/test/eigen2/ |
eigen2_sum.cpp | 22 VERIFY_IS_APPROX(MatrixType::Ones(rows, cols).sum(), Scalar(float(rows*cols))); // the float() here to shut up excessive MSVC warning about int->complex conversion being lossy
|
eigen2_cwiseop.cpp | 36 mones = MatrixType::Ones(rows, cols), 43 vones = VectorType::Ones(rows), 51 // test Zero, Ones, Constant, and the set* variants
|
eigen2_map.cpp | 52 Map<MatrixType, Aligned>(array1, rows, cols) = MatrixType::Ones(rows,cols);
|
eigen2_submatrices.cpp | 55 ones = MatrixType::Ones(rows, cols), local 131 VERIFY(ei_real(ones.col(c1).sum()) == RealScalar(rows)); 132 VERIFY(ei_real(ones.row(r1).sum()) == RealScalar(cols)); 134 VERIFY(ei_real(ones.col(c1).eigen2_dot(ones.col(c2))) == RealScalar(rows)); 135 VERIFY(ei_real(ones.row(r1).eigen2_dot(ones.row(r2))) == RealScalar(cols));
|
eigen2_triangular.cpp | 30 mones = MatrixType::Ones(rows, cols),
|
/external/eigen/Eigen/src/Geometry/ |
Umeyama.h | 138 VectorType S = VectorType::Ones(m);
|
/external/eigen/unsupported/Eigen/src/MatrixFunctions/ |
MatrixFunctionAtomic.h | 98 VectorType e = VectorType::Ones(m_Arows);
|
/external/eigen/unsupported/Eigen/src/Splines/ |
SplineFitting.h | 49 knots.segment(knots.size()-degree-1,degree+1) = KnotVectorType::Ones(degree+1);
|
/external/eigen/Eigen/src/Core/ |
CwiseNullaryOp.h | 24 * It is the return type of the Ones(), Zero(), Constant(), Identity() and Random() methods, 539 // ones: 547 * it is redundant to pass \a rows and \a cols as arguments, so Ones() should be used 553 * \sa Ones(), Ones(Index), isOnes(), class Ones 557 DenseBase<Derived>::Ones(Index nbRows, Index nbCols) 570 * it is redundant to pass \a size as argument, so Ones() should be used 576 * \sa Ones(), Ones(Index,Index), isOnes(), class One [all...] |
DenseBase.h | 324 static const ConstantReturnType Ones(Index rows, Index cols); 325 static const ConstantReturnType Ones(Index size); 326 static const ConstantReturnType Ones();
|
/external/eigen/unsupported/test/ |
jacobisvd.cpp | 98 VERIFY_IS_APPROX(m.jacobiSvd().singularValues(), RealVecType::Ones());
|