first commit

This commit is contained in:
2025-10-25 14:39:11 +02:00
commit cba857af61
21 changed files with 1128 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
/***************************************************************
** paramutils.h
****************************************************************/
#ifndef PARAMUTILS_H
#define PARAMUTILS_H
#if defined(__cplusplus)
extern "C" {
#endif
/***************************************************************/
float ParamQuantize(float value, float quantization);
float norm2quant(float minparm, float maxparm, float quant, float x);
float quant2norm(float minparm, float maxparm, float y);
/***************************************************************/
#if defined(__cplusplus)
}
#endif /* cplusplus */
#endif /* PARAMUTILS_H */