annotate toolboxes/MIRtoolbox1.3.2/somtoolbox/som_ind2sub.m @ 0:cc4b1211e677 tip

initial commit to HG from Changeset: 646 (e263d8a21543) added further path and more save "camirversion.m"
author Daniel Wolff
date Fri, 19 Aug 2016 13:07:06 +0200
parents
children
rev   line source
Daniel@0 1 function Subs = som_ind2sub(msize,inds)
Daniel@0 2
Daniel@0 3 %SOM_IND2SUB Map grid subscripts from linear index.
Daniel@0 4 %
Daniel@0 5 % Subs = som_ind2sub(msize,inds)
Daniel@0 6 %
Daniel@0 7 % sub = som_ind2sub([10 15],44);
Daniel@0 8 % sub = som_ind2sub(sMap,44);
Daniel@0 9 % sub = som_ind2sub(sMap.msize,44);
Daniel@0 10 % Subs = som_ind2sub([10 15],[44 13 91]');
Daniel@0 11 %
Daniel@0 12 % Input and output arguments:
Daniel@0 13 % msize (struct) map or topology struct
Daniel@0 14 % (vector) size 1 x m, specifies the map grid size
Daniel@0 15 % inds (vector) size n x 1, linear indeces of n map units
Daniel@0 16 %
Daniel@0 17 % Subs (matrix) size n x m, the subscripts
Daniel@0 18 %
Daniel@0 19 % See also SOM_SUB2IND.
Daniel@0 20
Daniel@0 21 % Contributed to SOM Toolbox vs2, February 2nd, 2000 by Juha Vesanto
Daniel@0 22 % http://www.cis.hut.fi/projects/somtoolbox/
Daniel@0 23
Daniel@0 24 % Version 2.0beta juuso 300798
Daniel@0 25
Daniel@0 26 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Daniel@0 27
Daniel@0 28 if isstruct(msize),
Daniel@0 29 if strcmp(msize.type,'som_map'), msize = msize.topol.msize;
Daniel@0 30 elseif strcmp(msize.type,'som_topol'), msize = msize.msize;
Daniel@0 31 else error('Invalid first argument.'); end
Daniel@0 32 end
Daniel@0 33
Daniel@0 34 n = length(msize);
Daniel@0 35 k = [1 cumprod(msize(1:end-1))];
Daniel@0 36 inds = inds - 1;
Daniel@0 37 for i = n:-1:1,
Daniel@0 38 Subs(:,i) = floor(inds/k(i))+1;
Daniel@0 39 inds = rem(inds,k(i));
Daniel@0 40 end
Daniel@0 41
Daniel@0 42 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%