Cogs.Core
dBToLinearTask.h
1#pragma once
2#include <vector>
3
4namespace Cogs
5{
6 namespace Core
7 {
8 namespace EchoSounder
9 {
10 float dBToLinear(float v);
11
13 {
14 float overflowThreshold = std::numeric_limits<float>::quiet_NaN();
15 float* in;
16 float* out;
17 size_t N;
18
19 void operator()();
20 };
21
22 }
23 }
24}
Contains all Cogs related functionality.
Definition: FieldSetter.h:23