two2n.m

来自「多维数据分析,有nPLS,PARAFAC,TURKER等」· M 代码 · 共 70 行

M
70
字号
function [IndicesN]=Two2N(DimX,Indices2);
%TWO2N Conversion of indices between unfoldings and N-way arrays
%
%
% function [IndicesN]=Two2N(DimX,Indices2);
%
%
% This algorithm requires access to:
% ''
%
% ---------------------------------------------------------
%                Conversion of indices
%         between unfoldings and N-way arrays
% ---------------------------------------------------------
%
% [IndicesN]=Two2N(DimX,Indices2);
%
% DimX     : Dimensions of the N-way array.
% Indices2 : Indices in the unfolded 2-way array.
% indicesN : Indices in the N-way array
%
% This function helps you resolve the correct N-way indices
% to an entry in an unfolded array. If you e.g. want to know
% the N-way indices of the [3 240] element of a 5-way core
% with dimensions [7 6 5 8 7] you would write:
% two2n([7 6 5 8 7],[3 240]) and the answer is
% [3 6 5 8 1].


% $ Version 0.01 $ Date 11. July 1997 $ Not compiled $
%
% Copyright
% Claus A. Andersson 1995-1997
% Chemometrics Group, Food Technology
% Department of Food and Dairy Science
% Royal Veterinary and Agricultutal University
% Rolighedsvej 30, T254
% DK-1958 Frederiksberg
% Denmark
% E-mail claus@andersson.dk
%

C=size(DimX,2);
a=Indices2(1);
b=Indices2(2);

if a>DimX(1),
   fprintf('two2n.m: The column index cannot be that high!\n');
   return
end;

if b>prod(DimX)/DimX(1),
   fprintf('two2n.m: The row index cannot be that high!\n');
   return
end;

Tb=b;
Par(1)=a;    
for c=C:-1:3,
   factor=prod(DimX(2:c-1));
   Par(c)=floor(Tb/factor)+1;
   if (Tb-(Par(c)-1)*factor)<1,
      Par(c)=Par(c)-1;
   end;
   Tb=Tb-(Par(c)-1)*factor;
end;
Par(2)=Tb;
IndicesN=Par;

⌨️ 快捷键说明

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