maked return result from signal generator

This commit is contained in:
2026-02-18 19:46:53 +03:00
parent b3151cad76
commit 0b9c830f58
4 changed files with 33 additions and 20 deletions

View File

@@ -18,6 +18,6 @@ auto main() -> int
{
std::vector<float> s;
for (auto p : r.m_data) s.push_back(p.m_value[0]);
// hack::log()(s);
hack::log()(s);
}
}

View File

@@ -9,5 +9,8 @@ auto main() -> int
auto s = generator.generate(st);
hack::log()(st.get_name());
hack::log()(s);
std::vector<float> ss;
for (auto p : s.m_data) ss.push_back(p.m_value[0]);
hack::log()(ss);
}