#include <Gaussian.h>
Definition at line 134 of file Gaussian.h.
◆ create()
std::unique_ptr< DataChef > souschef::GaussianInt16DataChefFactory::create |
( |
const Arguments & |
args | ) |
const |
|
virtual |
Implements souschef::DataChefFactory.
Definition at line 149 of file Gaussian.cpp.
150{
151 if (
args.count() != 2)
152 {
153 throw std::runtime_error{"invalid argument count: two arguments (mean/stddev) are expected"};
154 }
155
156 auto const mean = to_number<float>(
args.value(0));
157 auto const stddev = to_number<float>(
args.value(1));
158
159 return std::unique_ptr<DataChef>{new GaussianInt16DataChef{mean, stddev}};
160}
The documentation for this struct was generated from the following files: