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

Ads

Discussion Groups

Free Online Books

Discussion Groups > Circular Convolution

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

We found 106 threads matching ""circular convolution""

You are looking at page 1 of 3.

The most relevant threads are listed first

Re: Time-Limited Functions Represented as Periodic

Fred Marshall - 12:28 11-07-03
"Clay S. Turner" wrote in message news:srzPa.2$Y_1.1@fe04.atl2.webusenet.com... > > "Fred Marshall" wrote in message > news:JBjPa.2522$Jk5.1647120@feed2.centurytel.net... > > We had a long discussion about time-limited functions, spectral > > representation, etc. > > > > I...Re: Time-Limited Functions Represented as Periodic

Re: Zero Padding in radix 2 FFT

Bob Cain - 19:44 10-01-06
Fred Marshall wrote: > I'm not sure why the FIR situation is any different. What is wrong with the > notion of "circular convolution"? It's only meaningful for circular signals. In general, convolution, as mathematically described, requires a result that's as long as the sum of t...Re: Zero Padding in radix 2 FFT

Re: closed form expression for the spectrum of a windowed sinusoid

Andor - 14:43 15-05-06
banton wrote: > I am trying to find a closed form expression for > the spectrum of a hanning windowed sinusoid. Anton, I got that first sentence. Afterwards, you lost me. However, the von Hann window can easily be applied through circular convolution in the frequency domain. Here are t...Re: closed form expression for the spectrum of a windowed sinusoid

Re: numerical differentiation using FFT

Fred Marshall - 14:40 11-12-03
"Hakuna M. C." wrote in message news:39e8436d.0312101151.10763b4c@posting.google.com... > Hi all, > I am using a frequency operator to act as a differentiator like > > i*w d/dt > here w is the frequency defined in fourier space. > > I have my code written in matlab as foll...Re: numerical differentiation using FFT

Re: My problem [was Emperor...]

Fred Marshall - 16:14 23-12-03
"Walther Fledelius" wrote in message news:231220031625598959%-@-.dk... > In article , > Randy Yates wrote: > > > Walther, > > > > You're not listening. Multiplying using the FFT (which is just an > > efficient DFT) is performing *circular* convolution. Because of > > ...Re: My problem [was Emperor...]

Re: Large FFT --- NOT radix-2

Fred Marshall - 15:17 02-01-04
"Richard Owlett" wrote in message news:vvar7epmfqmuee@corp.supernews.com... > Richard Owlett wrote: > > Fred Marshall wrote: > > > > > "Richard Owlett" wrote in message > > > news:vv9fams78p7438@corp.supernews.com... > > > > > > > Any pointers to doing non-radix 2 FFT's....Re: Large FFT ---     NOT     radix-2

Re: Anthropomorphisms and the inherent periodicity of the DFT

Eric Jacobsen - 19:17 11-01-06
On Wed, 11 Jan 2006 16:44:48 -0500, Stan Pawlukiewicz wrote: > robert bristow-johnson wrote: > > (big snip) > > s" that the data > > passed to it is one period of a discrete, infinite, and periodic > > sequence of numbers that has period length of N. > > > > i fail to see this ...Re: Anthropomorphisms and the inherent periodicity of the DFT

Circular Convolution Riddle / Error?

Fred Marshall - 16:21 09-01-04
I've got myself befuddled here..... Start with a temporal cosine of peak amplitude 1.0 with an integral number of cycles in 256 seconds- period of some integer multiple "k" of 1/256Hz like 10/256. Window it (multiply it) with a rectangular window of length 256 and amplitude 1.0 - from t=0 to ...Circular Convolution Riddle / Error?

Re: Recycling FFTs

Andor - 10:48 12-01-06
> X(2k+1) = DFT( x1[n] w_2N[n]) - DFT( x2(n) w_2N[n]) (1). The DFT of the window w_2N[n] is equal to W_2N[k] := exp(-i pi (k-1/2)(1-1/N)) sin(pi(k-1/2))/sin(pi(k-1/2)/N). So DFT( x1[n] w_2N[n]) = X1[k] * W_2N[k], the circular convolution of X1 with the transform of the windo...Re: Recycling FFTs

fast convolution overlap-scrap filtering with scrap at end

Mark Borgerding - 12:12 31-01-04
I recently implemented fast convolution filtering for the "tools" portion of KISS FFT ( http://sourceforge.net/projects/kissfft ) I've seen a few realizations of the overlap-scrap (aka overlap save) method. They all have the scrapped output samples at the beginning of the output buffer. Th...fast convolution overlap-scrap filtering with scrap at end

Re: FIR Interpolation question

Clay S. Turner - 19:26 09-02-04
Hello Roger, I'm still not quite sure of what you are trying to do overall, but if I had a block of just 256 samples sampled at 48000 samples per second and I wanted to up the sampling rate by four for just this block, then I'd FFT the data and then prepend and postpend 384 zeroes to the FFT's...Re: FIR Interpolation question

Re: Convolution versus LPFiltering

One Usenet Poster - 19:34 22-02-04
XED wrote: > Hi everyone, > > I'm trying to implement a digital filter in c++ (assignment work, so I can't > just use one that someone else has written (--bummer)) and along the way > I've discovered that my knowledge of (low pass) filtering isn't quite what > it should be. I designed m...Re: Convolution versus LPFiltering

Re: Convolution of 2 different sized arrays of data?

robert bristow-johnson - 12:49 22-11-05
in article 1132671563.449008.35900@z14g2000cwz.googlegroups.com, dbell at dbell@niitek.com wrote on 11/22/2005 09:59: > Processing to be done real-time or off-line? actually, it shouldn't make much difference if the audio file is much, much larger than the impulse response. this is reall...Re: Convolution of 2 different sized arrays of data?

Re: help me find the bug in this program please :-??

vivi2003 - 03:03 04-12-05
Thank you very much for the attention. I wrote directly to the author, Prof V.Ingle and here is his question. Should any one face the problem as I do, plz read this :) -------------------------- Dear Prof. NGUYEN: Thanks for the feedback. Yes, there appears to be a bug. The function was or...Re: help me find the bug in this program please  :-??

Re: Zero padding and Cross Correlations

Matt Timmermans - 21:52 02-02-05
"dspchick" wrote in message news:1100t92ljn6vdc0@news.supernews.com... > Just say I am using the FFT (in matlab) to compute the crosscorrelation of > 2 discrete time signals, each of length N. I've tried 2 cases > > 1) zero-padding to a length of 2N, in order to avoid circular convoluti...Re: Zero padding and Cross Correlations

Re: returning to the alleged periodic nature of the DFT

robert bristow-johnson - 00:47 03-05-04
In article d61ab25b.0405011423.2a066928@posting.google.com, Mark Ovchain at mark_ovchain@yahoo.com wrote on 05/01/2004 18:23: > glen herrmannsfeldt wrote in message > news: ... > > > If the function is not periodic, then you should not use a DFT. ... > The example of fast convolut...Re: returning to the alleged periodic nature of the DFT

comp.dsp conference: Still need presenters? How about ...

Mark Borgerding - 22:55 07-05-04
TITLE:"Fast Convolution (FFT) Filtering: From Basics to Filter Banks". DESCRIPTION: Fast Convolution filtering is a powerful technique with which every DSP engineer should be familiar. All but the shortest FIR filters are more efficiently implemented with FFTs rather than direct forms. Th...comp.dsp conference:  Still need presenters? How about  ...

Re: mixing sine waves

Fred Marshall - 13:58 12-05-04
"viswanath" wrote in message news:791e9679.0405111129.111fd12f@posting.google.com... > Hi, > I have a question regarding mixing discrete sine waves. If you have > two sine waves sin(w1*t) and sin(w2*t) and they are sampled at the > same rate. If you are mixing them in a receiver operat...Re: mixing sine waves

Re: A stupid question about FIR filter

Fred Marshall - 13:20 31-07-04
"Jerry Avins" wrote in message news:410a60d9$0$2828$61fed72c@news.rcn.com... > Fred Marshall wrote: > > "Jerry Avins" wrote in message > > news:4107d474$0$2824$61fed72c@news.rcn.com... > > > > > Fred Marshall wrote: > > > > > > > > > > "phuture_project" wrote in mess...Re: A stupid question about FIR filter

Circular convolution to Linear convolution.

shashanktotre - 06:46 02-04-08
Hi, I am new to this programming world, and i really need some serious help. I have done a program in which i design a filter in frequency domain, then i take a CT image, which is a 3d image, read each voxel and make a 1d array. then i equal the number of samples for both the data set. so i have e...Circular convolution to Linear convolution.

Re: FIR facts: True or False.

Stephan M. Bernsee - 09:59 02-10-04
On 2004-10-02 15:30:12 +0200, Jerry Avins said: > I was under the impression that ccnvolution was convolution, no matter > how implemented; that implemention via FFT/IFFT and via transversal > methods produce the same result. Was I wrong? > > Jerry The DFT produces circular convol...Re: FIR facts: True or False.

Re: Fast cross correlation!

Rune Allnor - 05:09 10-10-04
"Atmapuri" wrote in message news: ... > Hi! > > Thanks. Would you have any references to why > you have to XX=fft(X,1,2*L); > double length of FFT with zero padding? The key word is "circular convolution". Rune ...Re: Fast cross correlation!

Re: interesting Filtering problem

Rune Allnor - 02:07 12-10-04
akashya@uncc.edu (Abhinav Kashyap) wrote in message news: ... > I am trying to compare two data sets with equal no. of points (it has > several peaks in it).I am using correlation technique .First I filter > the noise present in signal. > For that I first FFT the data, multiply low pass fil...Re: interesting Filtering problem

comp.dsp FAQ [1 of 4]

15:22 06-12-04
Archive-name: dsp-faq/part1 Last-modified: Tue Oct 19 2004 URL: http://www.bdti.com/faq/ FAQs (Frequently asked questions with answers) on Digital Signal Processing The world-wide web version of the comp.dsp FAQ is maintained and sponsored by Berkeley Design Technology, Inc....comp.dsp FAQ [1 of 4]

Re: convolving noise with noise will get Gaussian? what does that imply?

Rune Allnor - 03:26 03-11-04
"kiki" wrote in message news: ... > Suppose I have a segment of data, which is basically random numbers between > 0 and 1. I call it "f". > > Doing "f" -- the noise -- self convolution several times, the resultant > data, if plotted, is of Gaussian shape. Exactly what do you do, ...Re: convolving noise with noise will get Gaussian? what does that imply?

Re: Is FFT Overlap-add needed here?

Jerry Avins - 10:50 04-11-04
Shafik wrote: > If you dont mind me asking: > > How then, is the FFT used for filtering of images, where the FFT of an > image is taken, modified in the frequency domain, then converted back. > The same is done with time-domain signals as well. > Why is the issue of aliasing not consi...Re: Is FFT Overlap-add needed here?

Re: filtering in freq domain

Mark Borgerding - 10:15 10-11-04
Rune Allnor wrote: > Randy Yates wrote in message news: ... ... > > Note that frequency-domain filtering is only useful for FIR filters, i.e., > > filters in which the a vector above is 1. Butterworth filters are not > > FIR filters, so you won't be able to use frequency-domain filtering o...Re: filtering in freq domain

Re: non uniform QMF bank

rama krishna jetty - 05:00 16-11-04
dear all, i am Rama Krishna jetty,let me tell thank to dirk for his valuable suggestion. i got output after putting equivalent delay in which channel is not decomposed. i am asking one more question. i am using linear convolution in qmf bank.due that ...Re: non uniform QMF bank

Re: Why not just filter directly in the frequency domain using the fft and ifft?

John Monro - 19:55 05-12-04
Jerry Avins wrote: > John Monro wrote: > > ... > > > > > Another consideration is that latency of the FFT / IFFT is much greater > > because to implement a n-point filter you have to read in 2N samples > > even before you start the FFT/IFFTcalculations, and then the N > > calcula...Re: Why not just filter directly in the frequency domain using the fft and ifft?

Problem with circular convolution in SC-FDE

22:32 08-01-05
Hi, I am simulating a single carrier system in which signals are equalized in frequency domain. The concept is similar to OFDM, except both FFT and IFFT are reside in receiver side. Prefix is also used to deal with dispersive channel response. I have implemented the rooted raised cosine filte...Problem with circular convolution in SC-FDE

Re: A question about Covariance??

eryksun - 03:17 30-05-06
VijaKhara, I'm by no means an expert on this material, just a grad student, but hopefully the following comments will help further your knowledge. It's difficult to do justice to these concepts quickly, so your best bet is to Google for detailed explanations with illustrations. Basic termin...Re: A question about Covariance??

Re: Manipulate frequency data

Jerry Avins - 10:46 08-02-05
robert bristow-johnson wrote: > in article 1107829665.001267.308890@c13g2000cwb.googlegroups.com, > yeti349@yahoo.com at yeti349@yahoo.com wrote on 02/07/2005 21:27: > > > > ok, well eventually I need to apply filters in the frequency domain. > > > your "need" is to do the filte...Re: Manipulate frequency data

OFDM cyclic extension related question

20:09 11-02-05
Hello group, It is my pleasure to be posting queries to this group again. My understanding of the presence of the cyclic prefix (CP) in an OFDM symbol is to: 1. Prevent inter-symbol interference in a FIR channel if the length of the CP is larger than the delay spread of channel. 2. Makes l...OFDM cyclic extension related question

Re: Convolution of two one-dimensional arrays

Fred Marshall - 12:15 28-03-05
"katz" wrote in message news:qfCdnVdQhc4pn9XfRVn-pw@giganews.com... > hello everyone, > i just downloaded the FFTW library, and i read the tutorial (well..i > skimmed through it). > > i'm using dev-C++. in c++, i constructed 2 vectors, and i have to convolve > them using the FFTW ...Re: Convolution of two one-dimensional arrays

Re: downsampling -> FFT -> upsampling

Andrew Reilly - 10:57 06-04-05
On Wed, 06 Apr 2005 12:52:06 +0000, Fred T. Weiler wrote: > > Leaving aside the downsampling, if you are splitting your input into > > consecutive blocks of N samples, and assuming that the impulse > > response of your filter is less than N samples long, then zero pad both > > blocks of i...Re: downsampling -> FFT -> upsampling

Re: Do the mathematical inverse and identity elements exist for convolution?

robert bristow-johnson - 14:39 23-04-05
in article R3vae.105239$cg1.65671@bgtnsc04-news.ops.worldnet.att.net, Charles Krug at cdkrug@worldnet.att.net wrote on 04/23/2005 12:53: > I'm brushing up the mathematical side of my DSP brain. It's a bit dusty > having spent the last few years doing implementation and device control > wit...Re: Do the mathematical inverse and identity elements exist for convolution?

Re: Interpolated frequency sampling linear-phase FIR design

Andor - 04:23 28-04-05
Fred, thanks for pitching in! Fred Marshall wrote: > > Assume I specify the desired magnitude response of a linear-phase FIR > > filter at N/2+1 evenly spaced points [H(n):N/2+1], starting with 0, > > ending at Fs/2, where Fs is the sampling rate. > > Unless you are going to do so...Re: Interpolated frequency sampling linear-phase FIR design

first post - first trick

22:30 09-11-05
I don't see this anywhere on dspguru. So here it is. Feedback welcome. I used this durning my masters project. ============================================================ --- DSP Trick Submission Form --- ============================================================ TH...first post - first trick

Re: Relation between dynamic range and bandwidth?

Fred Marshall - 16:18 20-05-05
wrote in message news:1116617006.771789.155470@g14g2000cwa.googlegroups.com... > Randy, first of all I want to thank you for spending some time on this > problem. > Yes, by random I mean random for t=0,...,N-1 then these values are > repeated periodically for t=-\infty...+\infty. > ...Re: Relation between dynamic range and bandwidth?

Re: Implementation of FIR filters

Andor - 04:44 16-06-05
John wrote: > Frequency-domain filters require that the impulse-response duration of > the filter must be shorter than the sample batch-length used with the > filter. Typically the impulse-response duration is designed to be one > half of the batch length. Noise and distortion results if...Re: Implementation of FIR filters
| 1 | 2 | 3 | next