|
|
using | Eigen::Rand::OptCacheStore = CacheStore< EIGEN_MAX_ALIGN_BYTES > |
| |
|
template<typename Derived , typename Urng > |
| using | Eigen::Rand::RandBitsType = CwiseNullaryOp< internal::scalar_rng_adaptor< RandbitsGen< typename Derived::Scalar >, typename Derived::Scalar, Urng, true >, const Derived > |
| |
|
template<typename Derived , typename Urng > |
| using | Eigen::Rand::BalancedType = CwiseNullaryOp< internal::scalar_rng_adaptor< BalancedGen< typename Derived::Scalar >, typename Derived::Scalar, Urng, true >, const Derived > |
| |
|
template<typename Derived , typename Urng > |
| using | Eigen::Rand::Balanced2Type = CwiseNullaryOp< internal::scalar_rng_adaptor< Balanced2Gen< typename Derived::Scalar >, typename Derived::Scalar, Urng, true >, const Derived > |
| |
|
template<typename Derived , typename Urng > |
| using | Eigen::Rand::BalancedVVType = CwiseBinaryOp< internal::scalar_binary_rng_adaptor< BalancedVGen< typename Derived::Scalar >, typename Derived::Scalar, typename Derived::Scalar, typename Derived::Scalar, Urng, true >, const Derived, const Derived > |
| |
|
template<typename Derived , typename Urng > |
| using | Eigen::Rand::BalancedVSType = CwiseBinaryOp< internal::scalar_binary_rng_adaptor< BalancedVGen< typename Derived::Scalar >, typename Derived::Scalar, typename Derived::Scalar, typename Derived::Scalar, Urng, true >, const Derived, CwiseNullaryOp< internal::scalar_constant_op< typename Derived::Scalar >, const Derived > > |
| |
|
template<typename Derived , typename Urng > |
| using | Eigen::Rand::BalancedSVType = CwiseBinaryOp< internal::scalar_binary_rng_adaptor< BalancedVGen< typename Derived::Scalar >, typename Derived::Scalar, typename Derived::Scalar, typename Derived::Scalar, Urng, true >, CwiseNullaryOp< internal::scalar_constant_op< typename Derived::Scalar >, const Derived >, const Derived > |
| |
|
template<typename Derived , typename Urng > |
| using | Eigen::Rand::StdUniformRealType = CwiseNullaryOp< internal::scalar_rng_adaptor< StdUniformRealGen< typename Derived::Scalar >, typename Derived::Scalar, Urng, true >, const Derived > |
| |
|
template<typename Derived , typename Urng > |
| using | Eigen::Rand::UniformRealType = CwiseNullaryOp< internal::scalar_rng_adaptor< UniformRealGen< typename Derived::Scalar >, typename Derived::Scalar, Urng, true >, const Derived > |
| |
|
template<typename Derived , typename Urng > |
| using | Eigen::Rand::UniformRealVVType = CwiseBinaryOp< internal::scalar_binary_rng_adaptor< UniformRealVGen< typename Derived::Scalar >, typename Derived::Scalar, typename Derived::Scalar, typename Derived::Scalar, Urng, true >, const Derived, const Derived > |
| |
|
template<typename Derived , typename Urng > |
| using | Eigen::Rand::UniformRealVSType = CwiseBinaryOp< internal::scalar_binary_rng_adaptor< UniformRealVGen< typename Derived::Scalar >, typename Derived::Scalar, typename Derived::Scalar, typename Derived::Scalar, Urng, true >, const Derived, CwiseNullaryOp< internal::scalar_constant_op< typename Derived::Scalar >, const Derived > > |
| |
|
template<typename Derived , typename Urng > |
| using | Eigen::Rand::UniformRealSVType = CwiseBinaryOp< internal::scalar_binary_rng_adaptor< UniformRealVGen< typename Derived::Scalar >, typename Derived::Scalar, typename Derived::Scalar, typename Derived::Scalar, Urng, true >, CwiseNullaryOp< internal::scalar_constant_op< typename Derived::Scalar >, const Derived >, const Derived > |
| |
|
template<typename Derived , typename Urng > |
| using | Eigen::Rand::BernoulliType = CwiseNullaryOp< internal::scalar_rng_adaptor< BernoulliGen< typename Derived::Scalar >, typename Derived::Scalar, Urng, true >, const Derived > |
| |
|
template<typename Derived , typename Urng > |
| using | Eigen::Rand::BernoulliVType = CwiseUnaryOp< internal::scalar_unary_rng_adaptor< BernoulliVGen< typename Derived::Scalar >, typename Derived::Scalar, typename Derived::Scalar, Urng, true >, const Derived > |
| |
|
| template<typename Derived , typename Urng > |
| const RandBitsType< Derived, Urng > | Eigen::Rand::randBits (Index rows, Index cols, Urng &&urng) |
| | generates integers with random bits
|
| |
| template<typename Derived , typename Urng > |
| const RandBitsType< Derived, Urng > | Eigen::Rand::randBitsLike (Derived &o, Urng &&urng) |
| | generates integers with random bits
|
| |
| template<typename Derived , typename Urng > |
| const BalancedType< Derived, Urng > | Eigen::Rand::balanced (Index rows, Index cols, Urng &&urng) |
| | generates reals in a range [-1, 1]
|
| |
| template<typename Derived , typename Urng > |
| const BalancedType< Derived, Urng > | Eigen::Rand::balancedLike (const Derived &o, Urng &&urng) |
| | generates reals in a range [-1, 1]
|
| |
| template<typename Derived , typename Urng > |
| const Balanced2Type< Derived, Urng > | Eigen::Rand::balanced (Index rows, Index cols, Urng &&urng, typename Derived::Scalar a, typename Derived::Scalar b) |
| | generates reals in a range [a, b]
|
| |
| template<typename Derived , typename Urng > |
| const Balanced2Type< Derived, Urng > | Eigen::Rand::balancedLike (const Derived &o, Urng &&urng, typename Derived::Scalar a, typename Derived::Scalar b) |
| | generates reals in a range [a, b]
|
| |
| template<typename Lhs , typename Rhs , typename Urng > |
| const BalancedVVType< Lhs, Urng > | Eigen::Rand::balanced (Urng &&urng, const ArrayBase< Lhs > &a, const ArrayBase< Rhs > &b) |
| | generates reals in a range [a, b]
|
| |
|
template<typename Lhs , typename Urng > |
| const BalancedVSType< Lhs, Urng > | Eigen::Rand::balanced (Urng &&urng, const ArrayBase< Lhs > &a, typename Lhs::Scalar b) |
| |
|
template<typename Rhs , typename Urng > |
| const BalancedSVType< Rhs, Urng > | Eigen::Rand::balanced (Urng &&urng, typename Rhs::Scalar a, const ArrayBase< Rhs > &b) |
| |
| template<typename Derived , typename Urng > |
| const StdUniformRealType< Derived, Urng > | Eigen::Rand::uniformReal (Index rows, Index cols, Urng &&urng) |
| | generates reals in a range [0, 1)
|
| |
| template<typename Derived , typename Urng > |
| const StdUniformRealType< Derived, Urng > | Eigen::Rand::uniformRealLike (Derived &o, Urng &&urng) |
| | generates reals in a range [0, 1)
|
| |
| template<typename Derived , typename Urng > |
| const UniformRealType< Derived, Urng > | Eigen::Rand::uniformReal (Index rows, Index cols, Urng &&urng, typename Derived::Scalar min, typename Derived::Scalar max) |
| | generates reals in a range [min, max)
|
| |
| template<typename Derived , typename Urng > |
| const UniformRealType< Derived, Urng > | Eigen::Rand::uniformRealLike (Derived &o, Urng &&urng, typename Derived::Scalar min, typename Derived::Scalar max) |
| | generates reals in a range [min, max)
|
| |
| template<typename Lhs , typename Rhs , typename Urng > |
| const UniformRealVVType< Lhs, Urng > | Eigen::Rand::uniformReal (Urng &&urng, const ArrayBase< Lhs > &a, const ArrayBase< Rhs > &b) |
| | generates reals in a range [a, b)
|
| |
|
template<typename Lhs , typename Urng > |
| const UniformRealVSType< Lhs, Urng > | Eigen::Rand::uniformReal (Urng &&urng, const ArrayBase< Lhs > &a, typename Lhs::Scalar b) |
| |
|
template<typename Rhs , typename Urng > |
| const UniformRealSVType< Rhs, Urng > | Eigen::Rand::uniformReal (Urng &&urng, typename Rhs::Scalar a, const ArrayBase< Rhs > &b) |
| |
| template<typename Derived , typename Urng > |
| const BernoulliType< Derived, Urng > | Eigen::Rand::bernoulli (Index rows, Index cols, Urng &&urng, double p=0.5) |
| | generates 1 with probability p and 0 with probability 1 - p
|
| |
| template<typename Derived , typename Urng > |
| const BernoulliType< Derived, Urng > | Eigen::Rand::bernoulli (Derived &o, Urng &&urng, double p=0.5) |
| | generates 1 with probability p and 0 with probability 1 - p
|
| |
| template<typename Lhs , typename Urng > |
| const BernoulliVType< Lhs, Urng > | Eigen::Rand::bernoulli (Urng &&urng, const ArrayBase< Lhs > &p) |
| | generates 1 with probability p and 0 with probability 1 - p
|
| |