Performs subband decomposition by cascading the lowpass analysis filters and the highpass analysis filters and applies a decimation factor of 2 after each filtering step. path specifies the subband and determines how to cascade the lowpass analysis filters and the highpass analysis filters. Wire data to the signal input to determine the polymorphic instance to use or manually select the instance.


icon

Inputs/Outputs

  • cu16.png extension

    extension specifies the method to use to pad data at the borders of the input signal. The extension length is equal to the length of the wavelet filters. When you select the extension method, make the transition between the input signal and the padded data as smooth as possible because a smooth transition generates fewer large detail coefficients and enhances the efficiency of the signal representation.

  • cmsdt.png signal

    signal specifies the input signal.

  • cstr.png path

    path specifies the subband and how to cascade the lowpass analysis filters and the highpass analysis filters. path is a combination of the characters 0 and 1, where 0 represents lowpass filtering, and 1 represents highpass filtering.

  • cu16.png wavelet

    wavelet specifies the wavelet type to use for the discrete wavelet analysis. The default is db02. The options include two types: orthogonal (Haar, Daubechies (dbxx), Coiflets (coifx), Symmlets (symx)) and biorthogonal (Biorthogonal (biorx_x), including FBI (bior4_4 (FBI))), where x indicates the order of the wavelet.

  • cerrcodeclst.png error in (no error)

    error in describes error conditions that occur before this node runs. This input provides standard error in functionality.

  • ccclst.png analysis filters

    analysis filters specifies the coefficients of the lowpass analysis filters and the highpass analysis filters for the wavelet you specify. If you specify a value for analysis filters, this VI ignores the settings in the wavelet input. You can use the Wavelet Design Express VI to design the analysis filters and the corresponding synthesis filters.

  • c1ddbl.png lowpass

    lowpass specifies the coefficients of the lowpass analysis filter, which this VI uses to compute the approximation coefficients.

  • c1ddbl.png highpass

    highpass specifies the coefficients of the highpass analysis filter, which this VI uses to compute the detail coefficients.

  • imsdt.png path coef

    path coef returns the coefficients of the subband that path defines.

  • icclst.png residual info

    residual info returns the information about the complementary subbands at each level. The residual paths describe these complementary subbands. For example, when path is 101, the residual paths include path 0, path 11, and path 100. The WA Arbitrary Path Reconstruction VI uses the complementary subbands information for signal reconstruction.

  • i1ddbl.png coef

    coef returns the coefficients on the residual paths. For example, when path is 101, coef includes the coefficients on path 0, path 11, and path 100.

  • i1di32.png length

    length returns the length of the coefficients on the residual paths and the signal length. For example, when path is 101, length includes the signal length and the lengths on path 0, path 11, and path 100.

  • i1dstr.png residual path

    residual path returns the residual paths of path.

  • ierrcodeclst.png error out

    error out contains error information. This output provides standard error out functionality.

  • WA Arbitrary Path Decomposition Details

    The following illustration shows an example of an arbitrary path decomposition with the path input set to 101 and the extension input set to Periodic. The length of the input signal is 16 points.

    G1(z) denotes that the signal passes through a highpass filter. G0(z) denotes that the signal passes through a lowpass filter. G1(z) and G0(z) form the analysis filter bank. denotes a decimation on the signal with a factor of 2. Path 101 indicates that this VI passes the signal through a highpass filter G1(z), through a lowpass filter G0(z), and then through a highpass filter G1(z).

    Using information in the previous illustration, you can see that the residual info output contains the information about the complementary subbands at each level, and you can see that the path coef output of this VI contains the coefficients of the subband that path defines.

    A discrete wavelet decomposition decomposes the lowpass filtering output, or the approximation coefficients, at each level. However, an arbitrary path decomposition does not restrict the decomposition to the lowpass filtering output. You can use the lowpass filtering output or the highpass filtering output for the further decomposition.

    The residual info output stores the information of path 0, path 11, and path 100 in the above example for reconstruction. You can use the source coefficients input of the WA Arbitrary Path Reconstruction VI to select path coefficients and/or residual coefficients to reconstruct the signal.

    Examples

    Refer to the Engine Knocking Detection VI in the labview\examples\Wavelet Analysis\WAApplications directory for an example of using the WA Arbitrary Path Decomposition VI.