Capsim Block Documentation
This star designs FIR low pass, high pass, band pass, and band stop filters using the windowing method.
Port | Type | Name | |
---|---|---|---|
0 | float | x |
Port | Type | Name | |
---|---|---|---|
0 | float | y |
Num | Type | Name | Initial Value | Description |
---|---|---|---|---|
0 | float* | x_P | ||
1 | float* | h_P | ||
2 | int | N |
int i; int j; int status; int numberTaps; float tmp1,tmp2; float sum; int no_samples; FILE *fopen(); FILE *imp_F; |
---|
status=FIRDesign(fc,fl,fh,alpha,dbripple,twidth,att, ntap,windType,filterType); if(status) { fprintf(stderr,"firfil: Error in FIR design.\n"); return(4); } /* * open file containing impulse response samples. Check * to see if it exists. * */ if( (imp_F = fopen("tmp.tap","r")) == NULL) { fprintf(stderr,"firfil:tmp.tap file could not be opened.\n"); return(4); } fscanf(imp_F,"%d",&numberTaps); /* * Allocate memory and return pointers for tapped delay line x_P and * array containing impulse response samples, h_P. * */ if( (x_P = (float*)calloc(numberTaps,sizeof(float))) == NULL || (h_P = (float*)calloc(numberTaps,sizeof(float))) == NULL ) { fprintf(stderr,"firfil: can't allocate work space\n"); return(4); } /* * Read in the impulse response samples into the array * and initialize the tapped delay line to zero. * */ for (i=0; i |
---|
for(no_samples=MIN_AVAIL();no_samples >0; --no_samples) { IT_IN(0); /* * Shift input sample into tapped delay line */ tmp2=x(0); for(i=0; i |
---|
free(x_P); free(h_P); |
---|
/* Capsim (r) Text Mode Kernel (TMK) Star Library (Blocks) Copyright (C) 1989-2017 Silicon DSP Corporation This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA http://www.silicondsp.com Silicon DSP Corporation Las Vegas, Nevada */ |
---|
/* firfil.s */ /*********************************************************************** firfil() ************************************************************************ This star designs FIR low pass, high pass, band pass, and band stop filters using the windowing method. The star stores the specs of the FIR filter in the file tmp.spec. The star stores the FIR filter taps in the file tmp.tap. Date: October 19, 1989 Programmer: Sasan H. Ardalan. |
---|