openCARP
Doxygen code documentation for the open cardiac electrophysiology simulator openCARP
iir.h
Go to the documentation of this file.
1 /*
2  * COPYRIGHT
3  *
4  * liir - Recursive digital filter functions
5  * Copyright (C) 2007 Exstrom Laboratories LLC
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * A copy of the GNU General Public License is available on the internet at:
18  *
19  * http://www.gnu.org/copyleft/gpl.html
20  *
21  * or you can write to:
22  *
23  * The Free Software Foundation, Inc.
24  * 675 Mass Ave
25  * Cambridge, MA 02139, USA
26  *
27  * You can contact Exstrom Laboratories LLC via Email at:
28  *
29  * stefan(AT)exstrom.com
30  *
31  * or you can write to:
32  *
33  * Exstrom Laboratories LLC
34  * P.O. Box 7651
35  * Longmont, CO 80501, USA
36  *
37  */
38 
39 #ifdef __cplusplus
40 extern "C"
41 {
42 #endif
43 
44 long double *binomial_mult( int n, long double *p );
45 long double *trinomial_mult( int n, long double *b, long double *c );
46 
47 long double *dcof_bwlp( int n, long double fcf );
48 long double *dcof_bwhp( int n, long double fcf );
49 long double *dcof_bwbp( int n, long double f1f, long double f2f );
50 long double *dcof_bwbs( int n, long double f1f, long double f2f );
51 
52 int *ccof_bwlp( int n );
53 int *ccof_bwhp( int n );
54 int *ccof_bwbp( int n );
55 long double *ccof_bwbs( int n, long double f1f, long double f2f );
56 
57 long double sf_bwlp( int n, long double fcf );
58 long double sf_bwhp( int n, long double fcf );
59 long double sf_bwbp( int n, long double f1f, long double f2f );
60 long double sf_bwbs( int n, long double f1f, long double f2f );
61 
62 #ifdef __cplusplus
63 }
64 #endif
65 
int * ccof_bwhp(int n)
Definition: iir.c:377
long double * binomial_mult(int n, long double *p)
Definition: iir.c:83
long double sf_bwbp(int n, long double f1f, long double f2f)
Definition: iir.c:525
long double * dcof_bwhp(int n, long double fcf)
Definition: iir.c:224
long double sf_bwlp(int n, long double fcf)
Definition: iir.c:461
long double * trinomial_mult(int n, long double *b, long double *c)
Definition: iir.c:136
long double * dcof_bwbs(int n, long double f1f, long double f2f)
Definition: iir.c:292
long double * dcof_bwlp(int n, long double fcf)
Definition: iir.c:178
int * ccof_bwbp(int n)
Definition: iir.c:397
long double * dcof_bwbp(int n, long double f1f, long double f2f)
Definition: iir.c:236
long double sf_bwbs(int n, long double f1f, long double f2f)
Definition: iir.c:561
long double sf_bwhp(int n, long double fcf)
Definition: iir.c:493
int * ccof_bwlp(int n)
Definition: iir.c:348
long double * ccof_bwbs(int n, long double f1f, long double f2f)
Definition: iir.c:426