Searched refs:Ones (Results 26 - 50 of 54) sorted by relevance

123

/external/eigen/test/
H A Dproduct_large.cpp26 VectorXf v = VectorXf::Ones(N);
27 MatrixXf m = MatrixXf::Ones(N,3);
H A Dredux.cpp25 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
H A Deigensolver_generic.cpp44 VERIFY_IS_APPROX(ei1.eigenvectors().colwise().norm(), RealVectorType::Ones(rows).transpose());
H A Dcwiseop.cpp81 mones = MatrixType::Ones(rows, cols),
85 vones = VectorType::Ones(rows),
93 // test Zero, Ones, Constant, and the set* variants
H A Dgeo_homogeneous.cpp30 ones = VectorType::Ones();
H A Dmapped_matrix.cpp62 Map<MatrixType, Aligned>(array1, rows, cols) = MatrixType::Ones(rows,cols);
H A Darray_for_matrix.cpp62 VERIFY_IS_APPROX(m1.block(0,0,rows,0).rowwise().prod(), ColVectorType::Ones(rows));
H A Dblock.cpp50 ones = MatrixType::Ones(rows, cols);
/external/eigen/bench/
H A DbenchmarkSlice.cpp31 m.block(r,c,nr,nc) += Mat::Ones(nr,nc);
H A Dbench_norm.cpp239 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/
H A Dmatrix3_f.h18 static Matrix3F Ones();
H A Dmatrix3_unittest.cc17 Matrix3F ones = Matrix3F::Ones();
34 Matrix3F matrix = Matrix3F::Ones();
50 EXPECT_EQ(0.0f, Matrix3F::Ones().Determinant());
H A Dmatrix3_f.cc66 Matrix3F Matrix3F::Ones() { function in class:gfx::Matrix3F
/external/ceres-solver/internal/ceres/
H A Dblock_random_access_dense_matrix_test.cc91 (i+1) * (j+1) * Matrix::Ones(blocks[i], blocks[j]);
/external/eigen/test/eigen2/
H A Deigen2_sum.cpp22 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
H A Deigen2_cwiseop.cpp36 mones = MatrixType::Ones(rows, cols),
43 vones = VectorType::Ones(rows),
51 // test Zero, Ones, Constant, and the set* variants
H A Deigen2_map.cpp52 Map<MatrixType, Aligned>(array1, rows, cols) = MatrixType::Ones(rows,cols);
H A Deigen2_submatrices.cpp55 ones = MatrixType::Ones(rows, cols),
H A Deigen2_triangular.cpp30 mones = MatrixType::Ones(rows, cols),
/external/eigen/Eigen/src/Geometry/
H A DUmeyama.h138 VectorType S = VectorType::Ones(m);
/external/eigen/unsupported/Eigen/src/MatrixFunctions/
H A DMatrixFunctionAtomic.h98 VectorType e = VectorType::Ones(m_Arows);
/external/eigen/unsupported/Eigen/src/Splines/
H A DSplineFitting.h49 knots.segment(knots.size()-degree-1,degree+1) = KnotVectorType::Ones(degree+1);
/external/eigen/Eigen/src/Core/
H A DCwiseNullaryOp.h24 * It is the return type of the Ones(), Zero(), Constant(), Identity() and Random() methods,
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) function in class:Eigen::DenseBase
570 * it is redundant to pass \a size as argument, so Ones() should be used
576 * \sa Ones(), Ones(Index,Index), isOnes(), class Ones
580 DenseBase<Derived>::Ones(Index newSize) function in class:Eigen::DenseBase
597 DenseBase<Derived>::Ones() function in class:Eigen::DenseBase
[all...]
H A DDenseBase.h324 static const ConstantReturnType Ones(Index rows, Index cols);
325 static const ConstantReturnType Ones(Index size);
326 static const ConstantReturnType Ones();
/external/eigen/unsupported/test/
H A Djacobisvd.cpp98 VERIFY_IS_APPROX(m.jacobiSvd().singularValues(), RealVecType::Ones());

Completed in 1035 milliseconds

123