#include <Gaussian.h>
Definition at line 129 of file Gaussian.h.
◆ create()
std::unique_ptr< DataChef > souschef::GaussianInt32DataChefFactory::create |
( |
const Arguments & |
args | ) |
const |
|
virtual |
Implements souschef::DataChefFactory.
Definition at line 136 of file Gaussian.cpp.
137{
138 if (
args.count() != 2)
139 {
140 throw std::runtime_error{"invalid argument count: two arguments (mean/stddev) are expected"};
141 }
142
143 auto const mean = to_number<float>(
args.value(0));
144 auto const stddev = to_number<float>(
args.value(1));
145
146 return std::unique_ptr<DataChef>{new GaussianInt32DataChef{mean, stddev}};
147}
The documentation for this struct was generated from the following files: