annotate toolboxes/MIRtoolbox1.3.2/somtoolbox/som_sub2ind.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 inds = som_sub2ind(msize,Subs)
Daniel@0 2
Daniel@0 3 %SOM_SUB2IND Linear index from map grid subscripts.
Daniel@0 4 %
Daniel@0 5 % ind = som_sub2ind(msize,Subs)
Daniel@0 6 %
Daniel@0 7 % ind = som_sub2ind([10 15],[4 5]);
Daniel@0 8 % ind = som_sub2ind(sMap,[4 5]);
Daniel@0 9 % ind = som_sub2ind(sMap.msize,[4 5]);
Daniel@0 10 % inds = som_sub2ind([10 15],[4 5; 3 2; 1 10]);
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 % Subs (matrix) size n x m, the subscripts of n vectors
Daniel@0 16 %
Daniel@0 17 % inds (vector) size n x 1, corresponding linear indeces
Daniel@0 18 %
Daniel@0 19 % See also SOM_IND2SUB.
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 % 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 % check off-limits
Daniel@0 35 [n d] = size(Subs);
Daniel@0 36 offl = find(Subs < 1 | Subs > msize(ones(n,1),1:d));
Daniel@0 37 Subs(offl) = NaN;
Daniel@0 38
Daniel@0 39 % indexes
Daniel@0 40 k = [1 cumprod(msize(1:end-1))]';
Daniel@0 41 inds = 1 + (Subs-1)*k;
Daniel@0 42
Daniel@0 43 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%