libdspl-2.0/dspl/src/conv.c

175 wiersze
3.5 KiB
C
Czysty Zwykły widok Historia

2018-03-12 21:04:40 +00:00
/*
* Copyright (c) 2015-2018 Sergey Bakhurin
2018-03-12 21:04:40 +00:00
* Digital Signal Processing Library [http://dsplib.org]
*
* This file is part of libdspl-2.0.
2018-03-12 21:04:40 +00:00
*
* is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
2018-03-12 21:04:40 +00:00
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* DSPL 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 General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
2018-03-12 21:04:40 +00:00
* along with Foobar. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdlib.h>
#include <string.h>
#include "dspl.h"
/**************************************************************************************************
Real vectors linear convolution
***************************************************************************************************/
int DSPL_API conv(double* a, int na, double* b, int nb, double* c)
2018-03-12 21:04:40 +00:00
{
int k;
int n;
double *t;
size_t bufsize;
if(!a || !b || !c)
return ERROR_PTR;
if(na < 1 || nb < 1)
return ERROR_SIZE;
bufsize = (na + nb - 1) * sizeof(double);
if((a != c) && (b != c))
t = c;
else
t = (double*)malloc(bufsize);
memset(t, 0, bufsize);
for(k = 0; k < na; k++)
for(n = 0; n < nb; n++)
t[k+n] += a[k]*b[n];
if(t!=c)
{
memcpy(c, t, bufsize);
free(t);
}
return RES_OK;
}
/**************************************************************************************************
Complex vectors linear convolution
***************************************************************************************************/
int DSPL_API conv_cmplx(complex_t* a, int na, complex_t* b, int nb, complex_t* c)
2018-03-12 21:04:40 +00:00
{
int k;
int n;
complex_t *t;
size_t bufsize;
if(!a || !b || !c)
return ERROR_PTR;
if(na < 1 || nb < 1)
return ERROR_SIZE;
bufsize = (na + nb - 1) * sizeof(complex_t);
if((a != c) && (b != c))
t = c;
else
t = (complex_t*)malloc(bufsize);
memset(t, 0, bufsize);
for(k = 0; k < na; k++)
{
for(n = 0; n < nb; n++)
{
RE(t[k+n]) += CMRE(a[k], b[n]);
IM(t[k+n]) += CMIM(a[k], b[n]);
}
}
if(t!=c)
{
memcpy(c, t, bufsize);
free(t);
}
return RES_OK;
}
/**************************************************************************************************
IIR FILTER for real vector
**************************************************************************************************/
int DSPL_API filter_iir(double* b, double* a, int ord, double* x, int n, double* y)
2018-03-12 21:04:40 +00:00
{
double* buf = NULL;
double* an = NULL;
double u;
int k;
int m;
int count;
if(!b || !x || !y)
return ERROR_PTR;
if(ord < 1 || n < 1)
return ERROR_SIZE;
if(a && a[0]==0.0)
return ERROR_FILTER_A0;
count = ord + 1;
buf = (double*) malloc(count*sizeof(double));
an = (double*) malloc(count*sizeof(double));
memset(buf, 0, count*sizeof(double));
if(!a)
memset(an, 0, count*sizeof(double));
else
for(k = 0; k < count; k++)
an[k] = a[k] / a[0];
for(k = 0; k < n; k++)
{
for(m = ord; m > 0; m--)
buf[m] = buf[m-1];
u = 0.0;
for(m = ord; m > 0; m--)
u += buf[m]*an[m];
buf[0] = x[k] - u;
y[k] = 0.0;
for(m = 0; m < count; m++)
y[k] += buf[m] * b[m];
}
if(buf)
free(buf);
if(an)
free(an);
return RES_OK;
}