Home > phiwave > uvi_wave > do_iwtx.m

do_iwtx

PURPOSE ^

do first scale inverse wavelet transform in x dimension of matrix

SYNOPSIS ^

function t = do_iwtx(t, rh, rg, dlp, dhp, reco_detail, truncate)

DESCRIPTION ^

 do first scale inverse wavelet transform in x dimension of matrix   
 FORMAT t = do_iwtx(t, rh, rg, dlp, dhp, reco_detail, truncate) 
  
 Calculates the first-scale 1D inverse wavelet transform along the X (row)
 dimension of matrix t, which should be a wavelet transformed matrix. The
 second argument rh is the synthesis lowpass filter and the third argument
 rh is the synthesis highpass filter.
  
 dlp, dhp are the delays for the low-pass and high-pass filters.
 
 reco_detail are optional arguments, and default to 1 and 0 respectively
 reco_detail is a flag; if zero, detail is not reconstructed into signal
 truncate is a flag; if not zero, the last value in the x dimension is
 discarded, and a new matrix returned of size N-1 in X, where N was the
 original number of rows.

 $Id: do_iwtx.m,v 1.1 2004/09/26 04:00:24 matthewbrett Exp $

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function t = do_iwtx(t, rh, rg, dlp, dhp, reco_detail, truncate) 
0002 % do first scale inverse wavelet transform in x dimension of matrix
0003 % FORMAT t = do_iwtx(t, rh, rg, dlp, dhp, reco_detail, truncate)
0004 %
0005 % Calculates the first-scale 1D inverse wavelet transform along the X (row)
0006 % dimension of matrix t, which should be a wavelet transformed matrix. The
0007 % second argument rh is the synthesis lowpass filter and the third argument
0008 % rh is the synthesis highpass filter.
0009 %
0010 % dlp, dhp are the delays for the low-pass and high-pass filters.
0011 %
0012 % reco_detail are optional arguments, and default to 1 and 0 respectively
0013 % reco_detail is a flag; if zero, detail is not reconstructed into signal
0014 % truncate is a flag; if not zero, the last value in the x dimension is
0015 % discarded, and a new matrix returned of size N-1 in X, where N was the
0016 % original number of rows.
0017 %
0018 % $Id: do_iwtx.m,v 1.1 2004/09/26 04:00:24 matthewbrett Exp $
0019 
0020 %-This is the help file for the compiled routine
0021 error('do_iwtx.c not compiled - try phiwave(''make'')')

Generated on Wed 06-Jul-2005 18:07:21 by m2html © 2003