File:Discrete Hilbert transforms of a cosine function, using piecewise convolution.jpg

From Wikimedia Commons, the free media repository
Jump to navigation Jump to search

Original file (1,108 × 576 pixels, file size: 305 KB, MIME type: image/jpeg)

Captions

Captions

Compare a simple FIR Hilbert transform filter to the IIR version provided by Matlab/Octave function hilbert().

Summary

[edit]
Description
English: The blue graph shows a sine function that was created by computing the Discrete Hilbert transform of a cosine function. The cosine function was divided into 4 overlapping segments, which were individually convolved with an FIR Hilbert transform filter, and the 4 output segments were seamlessly pieced together. If the DFT of the FIR filter is replaced by the trivial samples of the DTFT of an IIR Hilbert transform filter, the cosine function segments are effectively convolved with a periodic summation of the IIR filter. That results in some frequency-dependent amplitude distortion and discontinuities at the segment boundaries. Examples of these effects are shown in the red graph.
Date
Source Own work
Author Bob K
Permission
(Reusing this file)
I, the copyright holder of this work, hereby publish it under the following license:
Creative Commons CC-Zero This file is made available under the Creative Commons CC0 1.0 Universal Public Domain Dedication.
The person who associated a work with this deed has dedicated the work to the public domain by waiving all of their rights to the work worldwide under copyright law, including all related and neighboring rights, to the extent allowed by law. You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission.

Other versions Derivative works of this file:  Discrete Hilbert transforms of a cosine function, using piecewise convolution.svg,
File:Discrete Hilbert transforms of a cosine function, using piecewise convolution.svg is a vector version of this file. It should be used in place of this JPG file when not inferior.

File:Discrete Hilbert transforms of a cosine function, using piecewise convolution.jpg → File:Discrete Hilbert transforms of a cosine function, using piecewise convolution.svg

For more information, see Help:SVG.

In other languages
Alemannisch  Bahasa Indonesia  Bahasa Melayu  British English  català  čeština  dansk  Deutsch  eesti  English  español  Esperanto  euskara  français  Frysk  galego  hrvatski  Ido  italiano  lietuvių  magyar  Nederlands  norsk bokmål  norsk nynorsk  occitan  Plattdüütsch  polski  português  português do Brasil  română  Scots  sicilianu  slovenčina  slovenščina  suomi  svenska  Tiếng Việt  Türkçe  vèneto  Ελληνικά  беларуская (тарашкевіца)  български  македонски  нохчийн  русский  српски / srpski  татарча/tatarça  українська  ქართული  հայերեն  বাংলা  தமிழ்  മലയാളം  ไทย  한국어  日本語  简体中文  繁體中文  עברית  العربية  فارسی  +/−
New SVG image

Scilab script

[edit]
// Create a 64th-order Hilbert transform filter
M = 65;         
h = hilb(M);    // applies a rectangular window to the IIR function

// Derive overlap-save parameters
overlap         = M-1;
N               = 4*overlap;  // an efficient block-size
step_size       = N-overlap;
M2 = overlap/2; // length of the edge effects for a zero-phase (non-causal) filter
h = [h(1+M2:M) zeros(1,N-M) h(1:M2)];           // convert filter to zero-phase
H1 = fft(h, -1);                                // transfer function
H2 = %i*[0 -ones(1,N/2-1) ones(1,N/2)];         // or just sample the DTFT

// Create an input function
num_steps = 4;                                  // signal length, in steps
n = (0 : num_steps*step_size+overlap)-M2;       // sample indices (minus filter delay)
cycles_per_step = 5/3;                          // just a non-integer
cycles_per_sample = cycles_per_step / step_size;
x = cos(2*%pi*cycles_per_sample*n);             // transform a pure sinusoid

// Overlap-Save convolution
position = 0;
while position+N <= length(x)
        yt = real(fft(fft(x(position+(1:N)), -1) .* H1, 1));
        y1(position+(1:step_size)) = yt(1+M2 : N-M2);
// The next 2 lines are equivalent, so the 2nd one is commented out.
        yt = real(fft(fft(x(position+(1:N)), -1) .* H2, 1));
//      yt = imag(hilbert(x(position+(1:N))));
        y2(position+(1:step_size)) = yt(1+M2 : N-M2);
        position = position + step_size;
end

// Compare the results
y1 = y1 / max(abs(y1));
y2 = y2 / max(abs(y2));
plot(y1, 'b');
plot(y2, 'r.');

title("Discrete Hilbert transforms of a cosine function, using Overlap-save algorithm", "fontsize", 4);
ylabel("amplitude", "fontsize", 3);

a = gca();
a.x_location = "origin";
a.children.children.mark_size=4;	// size of red dots

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current15:34, 29 March 2015Thumbnail for version as of 15:34, 29 March 20151,108 × 576 (305 KB)Bob K (talk | contribs)less gaudy
23:03, 21 March 2015Thumbnail for version as of 23:03, 21 March 2015796 × 461 (283 KB)Bob K (talk | contribs)User created page with UploadWizard

There are no pages that use this file.

Metadata