NumCpp  2.14.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
normal.hpp
Go to the documentation of this file.
1
28#pragma once
29
30#include <algorithm>
31#include <random>
32#include <string>
33
36#include "NumCpp/Core/Shape.hpp"
37#include "NumCpp/NdArray.hpp"
39
40namespace nc::random
41{
42 namespace detail
43 {
44 //============================================================================
45 // Method Description:
57 template<typename dtype, typename GeneratorType = std::mt19937>
59 {
61
62 if (inSigma <= 0)
63 {
64 THROW_INVALID_ARGUMENT_ERROR("input sigma must be greater than zero.");
65 }
66
67 std::normal_distribution<dtype> dist(inMean, inSigma);
68 return dist(generator);
69 }
70
71 //============================================================================
72 // Method Description:
86 template<typename dtype, typename GeneratorType = std::mt19937>
88 {
90
91 if (inSigma <= 0)
92 {
93 THROW_INVALID_ARGUMENT_ERROR("input sigma must be greater than zero.");
94 }
95
97
98 std::normal_distribution<dtype> dist(inMean, inSigma);
99
100 std::for_each(returnArray.begin(),
101 returnArray.end(),
102 [&generator, &dist](dtype& value) -> void { value = dist(generator); });
103
104 return returnArray;
105 }
106 } // namespace detail
107
108 //============================================================================
109 // Method Description:
120 template<typename dtype>
125
126 //============================================================================
127 // Method Description:
140 template<typename dtype>
145} // namespace nc::random
#define THROW_INVALID_ARGUMENT_ERROR(msg)
Definition Error.hpp:37
#define STATIC_ASSERT_ARITHMETIC(dtype)
Definition StaticAsserts.hpp:39
Holds 1D and 2D arrays, the main work horse of the NumCpp library.
Definition NdArrayCore.hpp:139
A Shape Class for NdArrays.
Definition Core/shape.hpp:41
dtype normal(GeneratorType &generator, dtype inMean=0, dtype inSigma=1)
Definition normal.hpp:58
Definition Random/bernoulli.hpp:41
dtype normal(dtype inMean=0, dtype inSigma=1)
Definition normal.hpp:121
std::mt19937_64 generator_
generator function
Definition generator.hpp:35
NdArray< dtype > arange(dtype inStart, dtype inStop, dtype inStep=1)
Definition arange.hpp:59