demo_tca3.m

来自「The tca package is a Matlab program that」· M 代码 · 共 17 行

M
17
字号
% demo script for TCA - 3
% clusters - IID signals
% in case of any bugs or errors, please contact fbach@cs.berkeley.edu

dir=cd;
addpath([dir '/utilities']);
addpath([dir '/contrasts']);
addpath([dir '/optimization']);


load demo_tca3
fprintf('demo script for TCA with clusters and stationary signals - should run in less than 1 minute\n');
[W,clusters]=cluster_tca_statio(x);
fprintf('estimated clusters (should be two clusters of size two)\n')
for i=1:length(clusters)
clusters{i}
end

⌨️ 快捷键说明

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