⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tca_statio.m

📁 The tca package is a Matlab program that implements the tree-dependent component analysis (TCA) alg
💻 M
字号:
function [W,tree]=tca_statio(x);
% CLUSTER_TCA - Tree-dependent Component Analysis of stationary time series
%               with default options
%
% for a function with options, seee tca_options.m

n=size(x,2);

fprintf('Tree-dependent Component Analysis - stationary signals + clusters\n')
fprintf('statio...')
[W,tree]=tca_options(x,'contrast','statio','opttype','exhaustive','whitening',1,'display',0,'tolvar',1e-4,'tolval',1e-4);
fprintf('...')
[W,tree]=tca_options(x,'contrast','statio','opttype','localsearch','whitening',1,'W',W,'edgeprior',edgeprior,'display',0,'tolvar',1e-4,'tolval',1e-4);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -