%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /lib/python3/dist-packages/pythran/pythonic/numpy/random/
Upload File :
Create Path :
Current File : //lib/python3/dist-packages/pythran/pythonic/numpy/random/f.hpp

#ifndef PYTHONIC_NUMPY_RANDOM_F_HPP
#define PYTHONIC_NUMPY_RANDOM_F_HPP

#include "pythonic/include/numpy/random/f.hpp"
#include "pythonic/include/numpy/random/generator.hpp"

#include "pythonic/types/ndarray.hpp"
#include "pythonic/types/NoneType.hpp"
#include "pythonic/types/tuple.hpp"
#include "pythonic/utils/functor.hpp"

#include <random>
#include <algorithm>

PYTHONIC_NS_BEGIN
namespace numpy
{
  namespace random
  {

    template <class pS>
    types::ndarray<double, pS> f(double dfnum, double dfden, pS const &shape)
    {
      types::ndarray<double, pS> result{shape, types::none_type()};
      std::chi_squared_distribution<double> distribution{dfnum};
      std::chi_squared_distribution<double> distribution2{dfden};
      std::generate(result.fbegin(), result.fend(), [&]() {
        return (distribution(details::generator) * dfden) /
               (distribution2(details::generator) * dfnum);
      });
      return result;
    }

    auto f(double dfnum, double dfden, long size)
        -> decltype(f(dfnum, dfden, types::array<long, 1>{{size}}))
    {
      return f(dfnum, dfden, types::array<long, 1>{{size}});
    }

    double f(double dfnum, double dfden, types::none_type d)
    {
      return (std::chi_squared_distribution<double>{dfnum}(details::generator) *
              dfden) /
             (std::chi_squared_distribution<double>{dfden}(details::generator) *
              dfnum);
    }
  }
}
PYTHONIC_NS_END

#endif

Zerion Mini Shell 1.0