代码搜索:allpass
找到约 95 项符合「allpass」的源代码
代码结果 95
www.eeworm.com/read/278816/10504373
c allpass.c
/* allpass.c - allpass reverberator with circular delay line */
double tap();
void cdelay();
double allpass(D, w, p, a, x) /* usage: y=allpass(D,w,&p,a,x); */
double *w, **p, a, x;
www.eeworm.com/read/159946/10585076
c allpass.c
/* allpass.c - allpass reverberator with circular delay line */
double tap();
void cdelay();
double allpass(D, w, p, a, x) /* usage: y=allpass(D,w,&p,a,x); */
double *w, **p, a, x;
www.eeworm.com/read/155165/11892844
c allpass.c
/* allpass.c - allpass reverberator with circular delay line */
double tap();
void cdelay();
double allpass(D, w, p, a, x) /* usage: y=allpass(D,w,&p,a,x); */
double *w, **p, a, x;
www.eeworm.com/read/213298/15137432
m allpass.m
function [y,b,a]=allpass(x,g,d)
%This is an allpass filter function.
%
%The structure is: [y,b,a] = allpass(x,g,d)
%
%where x = the input signal
% g = the feedforward gain (the feedback
www.eeworm.com/read/420803/2061474
h allpass.h
// Allpass filter
//
// Written by Jezar at Dreampoint, June 2000
// http://www.dreampoint.co.uk
// This code is public domain
#ifndef _allpass_
#define _allpass_
#include "denormals.h"
www.eeworm.com/read/361261/2948181
hpp allpass.hpp
// Allpass filter declaration
//
// Written by Jezar at Dreampoint, June 2000
// http://www.dreampoint.co.uk
// This code is public domain
#ifndef _allpass_
#define _allpass_
#include "denormals.h"
www.eeworm.com/read/361261/2948189
cpp allpass.cpp
// Allpass filter implementation
//
// Written by Jezar at Dreampoint, June 2000
// http://www.dreampoint.co.uk
// This code is public domain
#include "allpass.hpp"
allpass::allpass()
{
bufidx =
www.eeworm.com/read/134087/14008925
c allpass.c
/* allpass.c - allpass reverberator with circular delay line */
double tap();
void cdelay();
double allpass(D, w, p, a, x) /* usage: y=allpass(D,w,&p,a,x); */
double *w, **p, a, x;