Kalpana Kalpana (Editor)

S transform

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

S transform as a time–frequency distribution was developed in 1994 for analyzing geophysics data. In this way, the S transform is a generalization of the short-time Fourier transform (STFT), extending the continuous wavelet transform and overcoming some of its disadvantages. For one, modulation sinusoids are fixed with respect to the time axis; this localizes the scalable Gaussian window dilations and translations in S transform. Moreover, the S transform doesn't have a cross-term problem and yields a better signal clarity than Gabor transform. However, the S transform has its own disadvantages: the clarity is worse than Wigner distribution function and Cohen's class distribution function.

Contents

A fast S Transform algorithm was invented in 2010. It reduces the computational time and resources by at least 4 orders of magnitude and is available to the research community under an open source license.

Definition

There are several ways to represent the idea of the S transform. In here, S transform is derived as the phase correction of the continuous wavelet transform with window being the Gaussian function.

  • S-Transform
  • S x ( t , f ) = x ( τ ) | f | e π ( t τ ) 2 f 2 e j 2 π f τ d τ
  • Inverse S-Transform
  • x ( τ ) = [ S x ( t , f ) d t ] e j 2 π f τ d f

    Modified Form

  • Spectrum Form
  • The above definition implies that the s-transform function can be express as the convolution of ( x ( τ ) e j 2 π f τ ) and ( | f | e π t 2 f 2 ) .
    Applying the Fourier Transform to both ( x ( τ ) e j 2 π f τ ) and ( | f | e π t 2 f 2 ) gives

    S x ( t , f ) = X ( f + α ) e π α 2 / f 2 e j 2 π α t d α .
  • Discrete Time S-transform
  • From the Spectrum Form of S-tansform, we can derive the discrete time S-transform.
    Let t = n Δ T f = m Δ F α = p Δ F , where Δ T is the sampling interval and Δ F is the sampling frequency.
    The Discrete time S-transform can then be expressed as:

    S x ( n Δ T , m Δ F ) = p = 0 N 1 X [ ( p + m ) Δ F ] e π p 2 m 2 e j 2 p n N

    Implementation of Discrete Time S-transform

    Below is the Pseudo code of the implementation.

    Step1.Compute X [ p Δ F ]
    loop{ Step2.Compute e π p 2 m 2 for f = m Δ F
    Step3.Move X [ p Δ F ] to X [ ( p + m ) Δ F ]
    Step4.Multiply Step2 and Step3 B [ m , p ] = X [ ( p + m ) Δ F ] e π p 2 m 2
    Step5.IDFT( B [ m , p ] ). Repeat.}

    Comparison with Gabor Transform

    The only difference between Gabor Transform(GT) and S Transform is the window size. For GT, the windows size is a Gaussian function ( e π ( t τ ) 2 ) , meanwhile, the window function for S-Transform is a function of f. With a window function proportional to frequency, S Transform performs well in frequency domain analysis when the input frequency is low. When the input frequency is high, S-Transform has a better clarity in the time domain. As table below.

    This kind of property makes S-Transform a powerful tool to analyze sound because human is sensitive to low frequency part in a sound signal.

    Comparison with Wigner Transform

    The main problem with the Wigner Transform is the cross term, which stems from the auto-correlation function in the Wigner Transform function. This cross term may cause noise and distortions in signal analyses. S-transform analyses avoid this issue.

    Comparison with the short-time Fourier transform

    We can compare the S transform and short-time Fourier transform (STFT). First, a high frequency signal, a low frequency signal, and a high frequency burst signal are used in the experiment to compare the performance. The S transform characteristic of frequency dependent resolution allows the detection of the high frequency burst. On the other hand, as the STFT consists of a constant window width, it leads to the result having poorer definition. In the second experiment, two more high frequency bursts are added to crossed chirps. In the result, all four frequencies were detected by the S transform. On the other hand, the two high frequencies bursts are not detected by STFT. The high frequencies bursts cross term caused STFT to have a single frequency at lower frequency.

    Applications

  • Signal filterings
  • Magnetic resonance imaging (MRI)
  • Power system disturbance recognition
  • S transform has been proven to be able to identify a few types of disturbances, like voltage sag, voltage swell, momentary interruption, and oscillatory transients.
  • S transform also be applied for other types of disturbances such as notches, harmonics with sag and swells etc.
  • S transform generates contours which are suitable for simple visual inspection. However, wavelet transform requires specific tools like standard multiresolution analysis.
  • Geophysical signal analysis
  • Reflection seismology
  • Global seismology
  • References

    S transform Wikipedia