summaryrefslogtreecommitdiffstats
path: root/tksao/util/smooth.h
blob: 7674feede2d5e449aa5bdd3fefb34cc8454d07ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright (C) 1999-2017
// Smithsonian Astrophysical Observatory, Cambridge, MA, USA
// For conditions of distribution and use, see copyright notice in "copyright"

#ifndef __smooth_h__
#define __smooth_h__

void boxcar(double* kernel, int r);
void tophat(double* kernel, int r);
void gaussian(double* kernel, int r);

#endif