Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
split.m
Package: wavelet_toolbox.rar [view]
Upload User: haiyisale
Upload Date: 2013-01-09
Package Size: 3246k
Code Size: 1k
Category:
Wavelet
Development Platform:
Matlab
- function tnd = split(t,node,x,varargin)
- %SPLIT Split (decompose) the data of a terminal node.
- % TNDATA = SPLIT(T,N,X) decomposes the data X
- % associated to the terminal node N of the
- % wavelet tree T.
- %
- % TNDATA is a cell array (ORDER x 1) such that
- % TNDATA{k} contains the data associated to
- % the k-th child of N.
- %
- % The method uses DWT for one-dimensional data.
- %
- % This method overloads the DTREE method.
- % M. Misiti, Y. Misiti, G. Oppenheim, J.M. Poggi 09-Sep-1999.
- % Last Revision: 21-May-2003.
- % Copyright 1995-2004 The MathWorks, Inc.
- % $Revision: 1.4.4.2 $ $Date: 2004/03/15 22:36:05 $
- Lo_D = t.waveInfo.Lo_D;
- Hi_D = t.waveInfo.Hi_D;
- mode = t.dwtMode;
- order = treeord(t);
- tnd = cell(order,1);
- [tnd{1},tnd{2}] = dwt(x,Lo_D,Hi_D,'mode',mode,'shift',0);
- [tnd{4},tnd{3}] = dwt(x,Lo_D,Hi_D,'mode',mode,'shift',1);