ftp.nice.ch/pub/next/unix/audio/Cmix.N.s.tar.gz#/cmix/lib/breson.c

This is breson.c in view mode; [Download] [Up]

float breson(x,a,out,nvals)
float *x,*a,*out;
{
	int i;
	for(i=0; i<nvals; i++) {
		out[i] = *a * x[i] + *(a+1) * *(a+3) - *(a+2) * *(a+4);
		*(a+4) = *(a+3);
		*(a+3) = out[i];
	}
}

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.