commit : denoise lib first iteration

This commit is contained in:
Rafat Hussain
2017-08-07 06:40:11 +05:30
parent d29e08d06b
commit 4b80222408
5 changed files with 82 additions and 13 deletions

12
test/denoisetest.c Normal file
View File

@@ -0,0 +1,12 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include "../header/denoise.h"
int main() {
double x[10] = {1.2,4.3,-0.7,90,4.7,123.5,-9.5,-100,0.0,89};
printf("%g \n",mad(x,10));
return 0;
}