HomeSort by relevance Sort by last modified time
    Searched refs:LinSpaced (Results 1 - 7 of 7) sorted by null

  /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;
Tutorial_AdvancedInitialization_LinSpaced.cpp 2 table.col(0) = ArrayXf::LinSpaced(10, 0, 90);
  /external/eigen/test/
nullary.cpp 60 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/
Tutorial_sparse_example_details.cpp 22 Eigen::ArrayXd boundary = Eigen::ArrayXd::LinSpaced(n, 0,M_PI).sin().pow(2);
  /external/eigen/Eigen/src/Core/
CwiseNullaryOp.h 227 * 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)
249 * \copydoc DenseBase::LinSpaced(Sequential_t, Index, const Scalar&, const Scalar&)
254 DenseBase<Derived>::LinSpaced(Sequential_t, const Scalar& low, const Scalar& high)
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)
283 * \copydoc DenseBase::LinSpaced(Index, const Scalar&, const Scalar&)
288 DenseBase<Derived>::LinSpaced(const Scalar& low, const Scalar& high)
DenseBase.h 316 LinSpaced(Sequential_t, Index size, const Scalar& low, const Scalar& high);
318 LinSpaced(Index size, const Scalar& low, const Scalar& high);
320 LinSpaced(Sequential_t, const Scalar& low, const Scalar& high);
322 LinSpaced(const Scalar& low, const Scalar& high);

Completed in 83 milliseconds