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

📄 explcore.m

📁 多元统计分析是一种应用非常广泛的数据处理方法
💻 M
字号:
function [Comb,ExplVariat]=explcore(G,n);

%EXPLCORE For interpretation of cores and arrays
%
%
% function [Comb,ExplVariat]=explcore(G,Fac,n);
% 'explcore.m'
%
% This algorithm requires access to:
% 'two2n.m' 
%
% [Comb,ExplVariat,ExplVarian]=explcore(G,n);
%
% G         : Core array from Tucker3 model
% n         : Show only the 'n' largest factor combinations.
%

% Copyright (C) 1995-2006  Rasmus Bro & Claus Andersson
% Copenhagen University, DK-1958 Frederiksberg, Denmark, rb@life.ku.dk
%
% This program is free software; you can redistribute it and/or modify it under 
% the terms of the GNU General Public License as published by the Free Software 
% Foundation; either version 2 of the License, or (at your option) any later version.
%
% This program is distributed in the hope that it will be useful, but WITHOUT 
% ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 
% FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
% You should have received a copy of the GNU General Public License along with 
% this program; if not, write to the Free Software Foundation, Inc., 51 Franklin 
% Street, Fifth Floor, Boston, MA  02110-1301, USA.

% $ Version 2.00 $ May 2001 $ Changed to array notation $ RB $ Not compiled $
% $ Version 1.03 $ Date 28. Oct 1999 $ Not compiled $ 'improved help'
% $ Version 1.02 $ Date 17. Sep 1998 $ Not compiled $

DimG = size(G);
G = reshape(G,DimG(1),prod(DimG(2:end)));
Fac = DimG;

if ~exist('n'),
    n=10;
end;

if n>length(G(:));
    n=length(G(:));
end;

C=length(Fac(1,:));
Par=zeros(1,C);

ssgunc=sum(G(:).^2);

fprintf('Col1: Number in list\n');
fprintf('Col2: Index to elements\n');
fprintf('Col3: Explained variation (sum of squares) of the core.\n'); 
fprintf('Col4: Core entry.\n'); 
fprintf('Col5: Sq. core entry.\n'); 


for l=1:n,
    [i j]=max(G(:).^2);
    
    [a b]=find(G==G(j));
    a=a(1);
    b=b(1);
    Par=two2n(Fac,[a b]);
    
    fprintf('%2i    ',l);
    fprintf('(');
    for c=1:C-1,
        fprintf('%2i,',Par(c));
    end;
    Comb(l,:)=Par;
    ExplVariat(l)=100*G(a,b).^2/ssgunc;
    fprintf('%2i) %15.5f%% %15.5f  %15.5f\n',Par(C),ExplVariat(l),G(a,b),G(a,b).^2);
    G(a,b)=0;

end; 

⌨️ 快捷键说明

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