Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.3.3 - English

Change language to:
Français - 日本語 - Português

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Scilab help >> Signal Processing > hilbert

hilbert

Discrete-time analytic signal computation of a real signal using Hilbert transform

Calling Sequence

x=hilbert(xr)

Arguments

xr

real vector : the real signal samples

x

Complex vector: the discrete-time analytic signal.

Description

Returns theanalytic signal, from a real data sequence.

The analytic signal x = xr + i*xi has a real part, xr, which is the original data, and an imaginary part, xi, which contains the Hilbert transform. The imaginary part is a version of the original real sequence with a 90° phase shift.

References

http://ieeexplore.ieee.org/iel5/78/16975/00782222.pdf?arnumber=782222

Marple, S.L., "Computing the discrete-time analytic signal via FFT," IEEE Transactions on Signal Processing, Vol. 47, No.9 (September 1999), pp.2600-2603

See Also

  • window — compute symmetric window of various type
  • hil — FIR approximation to a Hilbert transform filter

Examples

//compare the discrete-time analytic signal imaginary part of the impulse real signal 
// with the FIR approximation of the Hilbert transform filter
m=25;
n=2*m+1;
y=hilbert(eye(n,1));
h=hilb(n)';
h=[h((m+1):$);h(1:m)];
plot([imag(y) h])

Authors

C. B.

<< hilb Signal Processing iir >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Oct 05 12:09:56 CEST 2011