diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2020-02-03 15:59:56 -0800 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2020-02-03 16:04:18 -0800 |
commit | 59b276edf6cd3d53fab1d45819a34ef1627e3389 (patch) | |
tree | 4beb238d5fd9a10298ed99c393709c87df1cc723 /src/libs/sig/sig.h | |
parent | 1c1ae5ee7243e731c7b44a11400e19bb8dab047b (diff) |
libs/sig: add sig_ops_scale w/test example
This assumes the input value is always 0-1, but may be used to produce
values in any signed range, mapped linearly to the input.
Diffstat (limited to 'src/libs/sig/sig.h')
-rw-r--r-- | src/libs/sig/sig.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libs/sig/sig.h b/src/libs/sig/sig.h index 3456af9..b54bfb7 100644 --- a/src/libs/sig/sig.h +++ b/src/libs/sig/sig.h @@ -38,5 +38,6 @@ extern sig_ops_t sig_ops_min; extern sig_ops_t sig_ops_mult; extern sig_ops_t sig_ops_pow; extern sig_ops_t sig_ops_round; +extern sig_ops_t sig_ops_scale; #endif |