blob: c94eab74de1c6e115760b5213128a2e3f8e0be6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#include "stmdsp.hpp"
#include "exprtk.hpp"
#include <algorithm>
#include <string_view>
#include <vector>
std::vector<stmdsp::dacsample_t> deviceGenLoadFormulaEval(const std::string& formulaString)
{
double x = 0;
exprtk::symbol_table<double> symbol_table;
exprtk::expression<double> expression;
exprtk::parser<double> parser;
symbol_table.add_variable("x", x);
symbol_table.add_constants();
expression.register_symbol_table(symbol_table);
parser.compile(formulaString, expression);
std::vector<stmdsp::dacsample_t> samples (stmdsp::SAMPLES_MAX);
auto genFun = [&x, &expression] {
stmdsp::dacsample_t s = expression.value();
++x;
return s;
};
std::generate(samples.begin(), samples.end(), genFun);
return samples;
}
|