home *** CD-ROM | disk | FTP | other *** search
-
- # include <math.h>
- # include "smooth.h"
- # include <stdio.h>
- # include "miscio.h"
-
- float xdata[100];
- float ydata[100];
- float smoothdata[100];
- int n;
- int i;
- int smoothnum;
- int derivnum;
- float weights[10];
- float wdivisor;
-
-
- void main()
- {
-
- printf("Data Smooth Weights \n" );
- printf( "Smoothnum = ");
- scanf("%d", &smoothnum);
-
- for ( i = 0; i <= smoothnum-1; ++i ) {
- printf("weight # %3d = ", i);
- scanf("%f", &weights[i]);
- printf("\n");
- }
- printf("Weight divisor = ");
- scanf("%f", &wdivisor);
- printf("\n");
- n = 100;
- {
- for ( i = 0; i <= n-1; ++i ) {
- xdata[i] = i;
- ydata[i] = cos(i / 10.0) + frandom();
- }
- DataSmoothWeights(ydata,n,smoothnum,weights,wdivisor,smoothdata);
- }
- for ( i = 0; i <= 99; ++i ) {
- printf( "ydata = %7.2f smoothdata = %7.2f\n",
- ydata[i],smoothdata[i]);
- }
-
-
- printf("\n Press Return to Continue\n" );
- getch();
- printf("Savitzky Golay Smoothing \n");
- printf( "Smoothnum = ");
- scanf("%d", &smoothnum);
- printf( "Derivnum = ");
- scanf("%d", &derivnum);
-
- n = 100;
- {
- for ( i = 0; i <= n-1; ++i ) {
- xdata[i] = i;
- ydata[i] = cos(i / 10.0) + frandom();
- }
- DataSmoothSg(ydata,n,smoothnum,derivnum,smoothdata);
- }
- for ( i = 0; i <=18; ++i ) {
- printf( "ydata = %7.2f smoothdata = %7.2f\n",ydata[i],smoothdata[i]);
- }
- printf("\n Press Return to End\n" );
- getch();
- }
-
-