<< invintdb2m Integer_Wavelet_Transform_ToolBox invtwo10 >>

Integer_Wavelet_Transform_ToolBox >> Integer_Wavelet_Transform_ToolBox > splusp

splusp

It performs inverse splusp integer wavelet transform

Calling Sequence

Y = invsplusp(A,D)
Y = invsplusp(A,D,o)

Arguments

Y

A vector representing a 1-d discrete signal whose samples are integers.

A

A vector representing the approximation part of the integer transform.

D

A vector representing the detail part of the integer transform.

Description

It regenerates the signal from its cubicsplined approximation and detail integer parts.The lengths of the approximation and detail parts is equal to the ceiling of the half of length of the input signal.

Examples

// Approximation part of a cubicsplined signal.
    A=[24.  21.  2.];
// detail parts in integer
    D= [-1.  5.  1.];    
    Y = invsplusp(A,D)

Authors

<< invintdb2m Integer_Wavelet_Transform_ToolBox invtwo10 >>