Sign in

username:

password:



Not a member?

Search compdsp



Search tips

comp.dsp by Keywords

Adaptive Filter | ADPCM | ADSP | ADSP-2181 | Aliasing | AMR | Anti-Aliasing | ARMA | Autocorrelation | AutoCovariance | Beamforming | Bessel | Blackfin | Butterworth | C6713 | CCS | Chebyshev | CIC Filter | Circular Convolution | Code Composer Studio | Comb Filter | Compression | Convolution | Cross Correlation | DCT | Decimation | Deconvolution | Demodulation | DM642 | DSP Boards | DSP/BIOS | DTMF | Echo Cancellation | Equalization | Equalizer | ETSI | EZLITE (Ez-kit Lite) | FFT | FFTW | FIR Filter | Fixed Point | FSK | G.711 | G.723 | G.729 | Gaussian Noise | Goertzel | GPIO | Hilbert Transform | IFFT | IIR Filter | Interpolation | Invariance | JTAG | Kalman | Laplace Transform | Levinson | LPC | McBSP | MIPS | Modulation | MPEG | Multirate | Notch Filter | Nyquist | OFDM | Oversampling | Pink Noise | Pitch | PLL | Polyphase | QAM | QDMA | Quantization | Quantizer | Radar | Random Noise | Reed Solomon | Remez | Resampling | RTDX | Sampling | Sharc | TI C6711 | Undersampling | Viterbi | Wavelets | White Noise | Wiener Filter | Windowing | XDS510PP | Z Transform

Discussion Groups

Free Online Books

Comp.dsp is a worldwide Usenet news group that is used to discuss various aspects of digital signal processing.

We found 144 threads matching "remez"

You are looking at page 1 of 4.

The most relevant threads are listed first

EJ: Remez / PM for nonlinear phase

Fred Marshall - 17:40 07-01-04
Eric, I just now focused on your suggested process: "generate the usual Remez input grid, except now create real and imaginary components. Send the real portion into the Remez routine configured for normal filter design, and send the imaginary component into the Remez routine with the Hil...EJ: Remez / PM for nonlinear phase

Remez algorithm and filter lengths

Rune Allnor - 15:15 22-12-03
Hi all. I was just involved in a thread over at comp.soft-sys.matlab where I got involved with the Remez algorithm. The matlab SP toolbox version is the only implementation of the Remez algorithm I have used, and it requires the user to specify the length of the FIR filter to be designed...Remez algorithm and filter lengths

Help with Remez function in Scilab...

ctulk - 21:07 21-03-07
Hello all...I'm new to the group and relatively new to Scilab. I'm trying to convert a section of code from Matlab to Scilab (please don't ask "why?" as I'm still trying to figure that one out myself...suffice it to say it is "because I have to"), and I'm completely stuck on converting the following...Help with Remez function in Scilab...

Specific Remez algorithm source

Hi Everybody I'm looking for the 'C' source of a Remez algorithm which is altered to design arbitrarily long filters with arbitrarily many linear bands. In fact, the MatLab function 'remez' do this but I need a 'C' source because I work under Labwindows CVI and the equivalent function in La...Specific Remez algorithm source

REMEZ computational complexity

renaudin - 05:10 20-09-06
Can any body tell me the complexity means number of operations required by the 1. remezord algorithm to estimate the order of filter. 2. remez algorithm to calculate an N order filter's impulse response (coefficients). Thnaks in advance for the information. ...REMEZ computational complexity

Remez Exchange code for TMS320C50 ?

ishaan - 14:26 12-04-06
Hello fellas ... I am making this short & sweet ... Can anyone give me a download link or mail me (if they have ) the assembly code for the Remez Exchange Algo for the TMS320C50 model. I am implementing digital filters and its necessary. I found the c program on Jake's site but how do i convert...Remez Exchange code for TMS320C50 ?

Differentiators using Remez/Parks McClellan

Kumar Appaiah - 21:05 01-03-07
Dear comp.dsp, I have written a simple Parks McClellan implementation myself, and wish to extend it for differentiators. Later, I came across Jake Janovetz's code here http://www.janovetz.com/jake/ and tried it out to find out how to get differentiators. I am able to get ordinary high/ low/ba...Differentiators using Remez/Parks McClellan

Remez Exchange Algorithm

=?ISO-8859-15?Q?Marcel_M=FCller?= - 04:48 22-06-06
Hi, I want to optimize a 32 band EQ plugin. Currently it uses inverse FFT for the creation of the FIR filter kernel. But this requires rather long FIR kernels to process low frequencies properly. While computing power is nowadays not an issue the latency is. I heard about the "Remez Exch...Remez Exchange Algorithm

Re: Filter design with a desired group delay?

robert bristow-johnson - 16:48 07-01-04
In article 7c4bf533.0401070850.53b25746@posting.google.com, ZedToe at acoustictech_zhangtao@yahoo.com.sg wrote on 01/07/2004 11:50: > Hi, > > The fdatool in matlab usually designs a real equiripple filter with a > group delay (N-1)/2 or N/2, where N is filter length. dunno about the f...Re: Filter design with a desired group delay?

C code for Remez Exchange / Parks-McClellan Algorithm

John - 00:16 22-11-03
Hi, I need to write some C code that is able to generate its own filters via Remez Exchange / Parks-McClellan Algorithm. I checked Numerical Recipes and didn't see anything. Does anyone know of a place where I can find some C source code for this algorithm? Thanks! John ...C code for Remez Exchange / Parks-McClellan Algorithm

Re: Arbitrary frequence response

bharat pathak - 04:21 20-02-08
Hi, You could use Remez design (the function is called firpm in matlab) or you could use least square based design (the function name is matlab is called "firls"). I had used firls over remez for performing inverse sinc filtering. and it gave me better results. this was in year 2001. hence ...Re: Arbitrary frequence response

How to use Jake's Remez Exchange code to design a differenciator?

chenjc - 16:20 03-03-07
Guys, I have a little problem to use his code to design a differentiator. To use the Remez in Matlab, we specify the gain expected at the band edge. But in Jake's code, only one desired value is allowed in each band. What I should give for differentiator? I tied to give the slope. But id gave...How to use Jake's Remez Exchange code to design a differenciator?

The Parks-McClellan algorithm

Rune Allnor - 06:15 08-09-04
Hi All. To make a short story long, my little FIR filter project is happily trodding along. I am starting to get the various window functions in place for LP prototypes, and with some luck, it's not a big deal to generate HP or BP versions from the LP prototypes. Band-stop filters are a ...The Parks-McClellan algorithm

Re: numerical differentiation of oscillating singal

Izhak - 09:41 28-10-03
Use B=REMEZ(N,F,A,'differentiator') and B=REMEZ(N,F,A,W,'differentiator') For bandlimited differentiation. The problem with differentiation is the noise at high frequencies. HTH -- ----------------------------------------------------------- Dr. Izhak "Rex_chaos" wrote in messag...Re: numerical differentiation of oscillating singal

Re: Linear Phase via 'Phase Cloning' New Method

westocl - 08:27 19-02-08
> I have got the same magnitude response and linear phase using the > following approach > > Remez + hanning window. > In (Remez+Hanning) total tap length = 25 (symmetric coeffs) > > In phase cloning approach total tap length = 35 (non-symmetric coeffs). > > Hence Remez + hanning w...Re: Linear Phase via 'Phase Cloning' New Method

minimax and choosing weights

MA - 16:45 16-09-05
Good evening (here it is, at least)! I'm having a little trouble with the design of a linear phase FIR. I'm using remez (minimax/equiripple) in matlab. My specification is; +-A dB in the passband and -B dB in the stopband, band edges at \omega_{p} and \omega_{s}. Now I need to choose my weighting so...minimax  and choosing weights

Re: Window of understanding opened ONCE WAS [Re: Imp.inv/bilinear trans. vs. expm()]

Rune Allnor - 02:56 31-08-04
Richard Owlett wrote in message news: ... > I've asked questions about "arbitrarily shaped frequency response > filters". I kept getting answers assuming "arbitrary" referred to > amount of ripple in passband/stopband. What I *MEANT* was an > *ARBITRARY* form of response vs frequenc...Re: Window of understanding opened       ONCE WAS  [Re: Imp.inv/bilinear trans. vs. expm()]

FIR filter design (false advertizing?)

Paul Mennen - 20:30 29-02-04
Trying to design an FIR Low pass filter. As a simple example, consider: > > edge = [0 .3 .7 1]; > > weight = [100 1]; > > 1000*remez(7,edge,[1 1 0 0],weight) ans= 32.2690 -109.2208 81.9170 495.0689 495.0689 81.9170 -109.2208 32.2690 The resulting filter has a pass band ripple of +/- .01...FIR filter design (false advertizing?)

Re: Need Ideas!!

Fred Marshall - 02:20 12-01-08
"Neelabh" wrote in message news:tNOdnf5vs8thhRXanZ2dnUVZ_ryqnZ2d@giganews.com... > I'd be deeply grateful if someone could help me out. I'm looking for ideas > for an academic project on telecommunications DSP. Everything I've looked > at so far has been done several times over. Could s...Re: Need Ideas!!

Converting IIR to FIR was Re: filtering in freq domain

Mark Borgerding - 10:32 11-11-04
Rune Allnor wrote: > Mark Borgerding wrote in message news: ... > > If you read the exchange of opinion between Randy and me, you will find > that one opinion goes as "Non-FIR filters filters can not be implemented > in frequency domain" while the other goes as "yes they can, and he...Converting IIR to FIR was Re: filtering in freq domain

Re: Why Wiener?

Rune Allnor - 10:12 30-03-07
On 30 Mar, 14:22, "julius" wrote: > On Mar 30, 6:40 am, "Rune Allnor" wrote: > > > Cultural differences is a major issue here. Remember, once Wiener's > > WW II papers were de-classified, the cold war was on. Getting > > access to Russian papers was not at all easy for people in t...Re: Why Wiener?

Re: Simply FIR question

Sam - 16:34 22-11-04
in matlab it is also possible to design FIR filters, especially with fdatool if you have the toolbox, or using the fir1() or remez() commands, depending on the filter you want to deign. This is helpful in the case you don't want to copy your 1024 coeffs into a matlab function to plot them .....Re: Simply FIR question

Re: FIR and IIR

Richard Webb - 14:21 05-05-04
The best place to search for help with Matlab is Matlab itself! Use the 'help' command within the Matlab command window. This will tell you which toolboxes you have available, you can then type 'help nameoftoolbox' for a listing of commands available within that toolbox, you can then get help...Re: FIR and IIR

REMEZ FIR filter generation (FIR Design Algorithms)

seb - 22:46 09-03-04
Hello, i am looking for an algorithme in C in order to generate Parks-McClellan FIR filter. I found one at "http://www.menne-biomed.de/". I want to know if someone has already use this type of algorithme ? Is there another available ? Is generated FIR coeficients are good ? thanks for yo...REMEZ FIR filter generation (FIR Design Algorithms)

Re: matlab firpm

robert bristow-johnson - 14:08 14-06-05
in article 1118766437.563081.50000@g47g2000cwa.googlegroups.com, homerbebe@yahoo.com at homerbebe@yahoo.com wrote on 06/14/2005 12:27: > b = firpm(N, Fo, Ao, W, {dens}); did they change the name of remez() to firpm()? good for MathWorks! now if only they'll allow us array indices that ar...Re: matlab firpm

Re: Demod Woes

Rick Lyons - 07:35 08-11-05
Hi Paul, You probably already know this but I'll just mention that if you have sufficient computational horsepower available, you can use Parks-McClellan (Remez) filter design software to design a high-performance wideband FIR (tapped-delay line) differentiator. If you do this, d...Re: Demod Woes

Re: FM Demodulation Woes

Bevan Weiss - 22:14 21-10-05
Clay S. Turner wrote: > "Paul Solomon" wrote in message > news:43596fac$1@dnews.tpgi.com.au... > > Hi Clay, > > > > This has been brought up a few times and the thing that has stopped me > > going down this road each time is that with all mt googleing, I have still > > not been a...Re: FM Demodulation Woes

filter design

laki - 14:38 30-08-05
Hi, Suppose I want to design a digital filter for some application. There are some options to do this: - weighted least squares design - minimax design - filter design based on 'windows' (fir1, fir2) - equiripple design (remez) Which method is the most used (in education, in industry)? W...filter design

Re: Increasing Notch depth using windowing

bharat pathak - 22:24 26-05-08
better thing is to design your notch filter using remez exchange algo right from the specs you want. windows wont help in increasing notch depth, instead they will spreaden the width of the notch. Bharat Pathak Arithos Designs www.Arithos.com DSP Design Consultancy and Training Company....Re: Increasing Notch depth using windowing

Re: Gibbs Phenomenon

Fred Marshall - 15:23 06-07-08
"Dave" wrote in message news:d656b993-fb08-4a41-8806-0bfa0978e5b2@d77g2000hsb.googlegroups.com... > On Jun 28, 4:41 pm, Thomas Richter wrote: > > > I afraid you don't understand - they *do* form a (Schauder-) basis of > > L^2, provably. But this only implies convergence in L^2 (mea...Re: Gibbs Phenomenon

Re: CIC filter and compensation filter - help

sludge - 17:41 25-06-08
A CIC compensation filter is not an inverse filter. Rather, it compensates for CIC "droop" which is the roll-off shape of the CIC filter response. A good appoach is to use the remez exchange algorithm to build a FIR filter. For debugging, plot your filter responses and take note to the gain at...Re: CIC filter and compensation filter - help

Hilbert transform & analytic signals

Rick Lyons - 21:18 14-07-03
Hi Guys, I've been modeling (with MATLAB) the Hilbert transform for use in generating the analytic signal (a complex signal) corresponding to a real signal x(n). That is, I'm computing a complex signal whose real part is x(n) and whose imaginary part is the Hilbert transform of x(n)....Hilbert transform & analytic signals

Re: Complex FIR Filter Design - Notation in Preuss' IEEE Trans. Paper

Rune Allnor - 17:27 11-09-06
Brandon skrev: > Is anyone familiar with the following paper? > > Preuss, K, "On the Design of FIR Filters by Complex Chebyshev > Approximation," IEEE Trans. Acoust., Speach, Signal Processing, vol. > 37, pp. 702-712, 1989. > > The author uses a notation I am not familiar with. Speci...Re: Complex FIR Filter Design - Notation in Preuss' IEEE Trans. Paper

Re: FIR filter and time delay

Thanks. Looking at the page: http://www-ccrma.stanford.edu/~jos/filters/Zero_Phase_Filters.html It seems that my shifting of the coefficients of a FIR filter designed by the windowing method produces a filter where h(n) = h(-n), which fits the definition of a zero phase filter as per that pa...Re: FIR filter and time delay

Re: Parks-McClellan Algorithm

Fred Marshall - 14:57 04-03-04
"FTChan" wrote in message news:b2c1978e.0403040410.45923767@posting.google.com... > Hello, > > Can anyone tell me why when designing a low pass filter using > Parks-McClellan algorithm, the approximation must decrease > monotonically in the "don't care" region between the passband...Re: Parks-McClellan Algorithm

Re: free digital filter design software

Jerry Avins - 10:52 27-01-06
mughat wrote: > As a student I have been using matlab "Digital filter design2" for designing > the filter and generating/exporting coefficients for my digital filter. Is > there any free software out there that can do the same? ftp://ftp.mission-systems-inc.com/outgoing/Parks_McClellan h...Re: free digital filter design software

Re: kalman filter diverging?

Peter J. Kootsookos - 01:33 17-07-03
Tom writes: > It is only because of multivariable problems that we have to delve into such > things in the first place. H infinity seems to be far better and much more like > the classical solution. Poppy cock. It's just another way to pose the problem; it has some advantages over th...Re: kalman filter diverging?

how to apply 2D FIR filter to an image using MATLAB?

fulltime - 21:35 21-01-07
Hi all, I have used remez function to design a 1D FIR filter and converted it to a 2D FIR filter using ftrans2. However, wat commands in matlab can i use to apply this 2D FIR filter to my image? thks.. ...how to apply 2D FIR filter to an image using MATLAB?

Re: Additional Real Poles?

Eric Jacobsen - 17:07 08-07-07
On Sun, 08 Jul 2007 14:03:22 -0500, Tim Wescott wrote: > > I want to make a nice little optimal filter finder in Scilab, for times > just like this -- I want to be able to tell it the amplitude (and possibly > phase) constraints, possibly after sampling and reconstruction, and have > it ...Re: Additional Real Poles?

Re: Equiripple FIR filter design

Mark Borgerding - 14:16 14-09-05
Fred Marshall wrote: > "jaan" wrote in message > news:gpCdnZ2dnZ1REL7UnZ2dnZSpuN6dnZ2dRVn-yZ2dnZ0@giganews.com... > > > > I have to build a lowpass filter: > > > > > > cuttoff freq = 0.1; > > > attenuation = 90 dB; > > > transition = 0.01; > > > passband ripple = 0.000275 dB; > > ...Re: Equiripple FIR filter design
| 1 | 2 | 3 | 4 | next