spearmanrcollums.m

来自「用于文本语义分析的潜在语义分析算法LSA(Latent Semantic Ana」· M 代码 · 共 19 行

M
19
字号
function r=spearmanrcollums(x)
% function r=spearmanrcollums(x)
% return Spearman Rank Correlation matrix
% can only give the correlation of the collums!
% Requires the Spearman Rank matrix to be applied on collums,
% or the program will give absurd result.
% NEVER apply this program on rows!
[m n]=size(x);
r=zeros(m,n);
for j=1:n-1
    for k=j+1:n
        sum=0;
        for i=1:m
             temp=(x(i,j)-x(i,k))^2;
             sum=sum+temp;
        end
        r(k,j)=1-6*sum/(m^3-m);
    end
end

⌨️ 快捷键说明

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