/* misc_func.h function prototypes for miscellaneous functions used in bgc routines for use with pointbgc front-end to BIOME-BGC library v4.1.2 *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-* Biome-BGC version 4.1.2 Copyright 2002, Peter E. Thornton *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-* */ /* function prototypes for smoothing functions */ int run_avg(const double *input, double *output, int n, int w, int w_flag); int boxcar_smooth(double* input, double* output, int n, int w, int w_flag);