Searched refs:LinSpaced (Results 1 - 7 of 7) sorted by relevance

/external/eigen/doc/snippets/
H A DDenseBase_LinSpaced.cpp1 cout << VectorXi::LinSpaced(4,7,10).transpose() << endl;
2 cout << VectorXd::LinSpaced(5,0.0,1.0).transpose() << endl;
H A DDenseBase_LinSpaced_seq.cpp1 cout << VectorXi::LinSpaced(Sequential,4,7,10).transpose() << endl;
2 cout << VectorXd::LinSpaced(Sequential,5,0.0,1.0).transpose() << endl;
H A DTutorial_AdvancedInitialization_LinSpaced.cpp2 table.col(0) = ArrayXf::LinSpaced(10, 0, 90);
/external/eigen/test/
H A Dnullary.cpp60 m = VectorType::LinSpaced(size,low,high);
64 VERIFY( (MatrixXd(RowVectorXd::LinSpaced(3, 0, 1)) - RowVector3d(0, 0.5, 1)).norm() < std::numeric_limits<Scalar>::epsilon() );
71 m = VectorType::LinSpaced(Sequential,size,low,high);
93 VERIFY_IS_APPROX( ScalarMatrix::LinSpaced(1,low,high), ScalarMatrix::Constant(high) );
/external/eigen/doc/special_examples/
H A DTutorial_sparse_example_details.cpp22 Eigen::ArrayXd boundary = Eigen::ArrayXd::LinSpaced(n, 0,M_PI).sin().pow(2);
/external/eigen/Eigen/src/Core/
H A DCwiseNullaryOp.h227 * This particular version of LinSpaced() uses sequential access, i.e. vector access is
238 * \sa setLinSpaced(Index,const Scalar&,const Scalar&), LinSpaced(Index,Scalar,Scalar), CwiseNullaryOp
242 DenseBase<Derived>::LinSpaced(Sequential_t, Index size, const Scalar& low, const Scalar& high) function in class:Eigen::DenseBase
249 * \copydoc DenseBase::LinSpaced(Sequential_t, Index, const Scalar&, const Scalar&)
254 DenseBase<Derived>::LinSpaced(Sequential_t, const Scalar& low, const Scalar& high) function in class:Eigen::DenseBase
272 * \sa setLinSpaced(Index,const Scalar&,const Scalar&), LinSpaced(Sequential_t,Index,const Scalar&,const Scalar&,Index), CwiseNullaryOp
276 DenseBase<Derived>::LinSpaced(Index size, const Scalar& low, const Scalar& high) function in class:Eigen::DenseBase
283 * \copydoc DenseBase::LinSpaced(Index, const Scalar&, const Scalar&)
288 DenseBase<Derived>::LinSpaced(const Scalar& low, const Scalar& high) function in class:Eigen::DenseBase
H A DDenseBase.h303 LinSpaced(Sequential_t, Index size, const Scalar& low, const Scalar& high);
305 LinSpaced(Index size, const Scalar& low, const Scalar& high);
307 LinSpaced(Sequential_t, const Scalar& low, const Scalar& high);
309 LinSpaced(const Scalar& low, const Scalar& high);

Completed in 1050 milliseconds